mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-09 12:57:26 -05:00
27
flake.lock
generated
27
flake.lock
generated
@ -208,14 +208,14 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"org-mode": {
|
"org": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1626291384,
|
"lastModified": 1627155762,
|
||||||
"narHash": "sha256-HxsTCj03rRES2o7I4yNAWM1jeAzqCvUdnwlwc+NkPEQ=",
|
"narHash": "sha256-XS1eA6P0ePabdrnUNe5lN19EA9dfK615gMGObr9wfBQ=",
|
||||||
"owner": "emacs-straight",
|
"owner": "emacs-straight",
|
||||||
"repo": "org-mode",
|
"repo": "org-mode",
|
||||||
"rev": "604bfd9d755770e12c368c15148780ec723211df",
|
"rev": "c9dfed48a607c7f6524f1c6480f09cf61a5d6237",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -224,6 +224,22 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"org-contrib": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1623339452,
|
||||||
|
"narHash": "sha256-E3pioqkmAKQm5N7YsgJZil0/ozkdRE7//tE9FGbrluM=",
|
||||||
|
"ref": "master",
|
||||||
|
"rev": "fc81309cf6756607a836f93049a9393c2967c4e0",
|
||||||
|
"revCount": 2599,
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.sr.ht/~bzg/org-contrib"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.sr.ht/~bzg/org-contrib"
|
||||||
|
}
|
||||||
|
},
|
||||||
"org-yt": {
|
"org-yt": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
@ -287,7 +303,8 @@
|
|||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nose": "nose",
|
"nose": "nose",
|
||||||
"ob-racket": "ob-racket",
|
"ob-racket": "ob-racket",
|
||||||
"org-mode": "org-mode",
|
"org": "org",
|
||||||
|
"org-contrib": "org-contrib",
|
||||||
"org-yt": "org-yt",
|
"org-yt": "org-yt",
|
||||||
"php-extras": "php-extras",
|
"php-extras": "php-extras",
|
||||||
"revealjs": "revealjs",
|
"revealjs": "revealjs",
|
||||||
|
@ -58,8 +58,10 @@
|
|||||||
nose.flake = false;
|
nose.flake = false;
|
||||||
ob-racket.url = "github:xchrishawk/ob-racket";
|
ob-racket.url = "github:xchrishawk/ob-racket";
|
||||||
ob-racket.flake = false;
|
ob-racket.flake = false;
|
||||||
org-mode.url = "github:emacs-straight/org-mode";
|
org-contrib.url = "git+https://git.sr.ht/~bzg/org-contrib";
|
||||||
org-mode.flake = false;
|
org-contrib.flake = false;
|
||||||
|
org.url = "github:emacs-straight/org-mode";
|
||||||
|
org.flake = false;
|
||||||
org-yt.url = "github:TobiasZawada/org-yt";
|
org-yt.url = "github:TobiasZawada/org-yt";
|
||||||
org-yt.flake = false;
|
org-yt.flake = false;
|
||||||
php-extras.url = "github:arnested/php-extras";
|
php-extras.url = "github:arnested/php-extras";
|
||||||
|
@ -46,8 +46,16 @@ self: super: {
|
|||||||
pname = "nose";
|
pname = "nose";
|
||||||
};
|
};
|
||||||
|
|
||||||
org-mode = self.straightBuild rec {
|
org-contrib = self.straightBuild {
|
||||||
pname = "org-mode";
|
pname = "org-contrib";
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/emacs/site-lisp
|
||||||
|
cp -r lisp/* $out/share/emacs/site-lisp
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
org = self.straightBuild rec {
|
||||||
|
pname = "org";
|
||||||
version = "9.4";
|
version = "9.4";
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
LISPDIR=$out/share/emacs/site-lisp
|
LISPDIR=$out/share/emacs/site-lisp
|
||||||
|
Reference in New Issue
Block a user