mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-23 14:03:46 -05:00
26
flake.lock
generated
26
flake.lock
generated
@@ -3,17 +3,34 @@
|
|||||||
"doom-emacs": {
|
"doom-emacs": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1660901074,
|
"lastModified": 1662497747,
|
||||||
"narHash": "sha256-3apl0eQlfBj3y0gDdoPp2M6PXYnhxs0QWOHp8B8A9sc=",
|
"narHash": "sha256-4n7E1fqda7cn5/F2jTkOnKw1juG6XMS/FI9gqODL3aU=",
|
||||||
"owner": "doomemacs",
|
"owner": "doomemacs",
|
||||||
"repo": "doomemacs",
|
"repo": "doomemacs",
|
||||||
"rev": "c44bc81a05f3758ceaa28921dd9c830b9c571e61",
|
"rev": "3853dff5e11655e858d0bfae64b70cb12ef685ac",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "doomemacs",
|
"owner": "doomemacs",
|
||||||
"ref": "master",
|
|
||||||
"repo": "doomemacs",
|
"repo": "doomemacs",
|
||||||
|
"rev": "3853dff5e11655e858d0bfae64b70cb12ef685ac",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"doom-modeline": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1648449595,
|
||||||
|
"narHash": "sha256-HjULFxtNDAJ7PDpy/e2bhoDYgBjwGpBdBoTY135puYA=",
|
||||||
|
"owner": "seagle0128",
|
||||||
|
"repo": "doom-modeline",
|
||||||
|
"rev": "ce9899f00af40edb78f58b9af5c3685d67c8eed2",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "seagle0128",
|
||||||
|
"repo": "doom-modeline",
|
||||||
|
"rev": "ce9899f00af40edb78f58b9af5c3685d67c8eed2",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -339,6 +356,7 @@
|
|||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"doom-emacs": "doom-emacs",
|
"doom-emacs": "doom-emacs",
|
||||||
|
"doom-modeline": "doom-modeline",
|
||||||
"doom-snippets": "doom-snippets",
|
"doom-snippets": "doom-snippets",
|
||||||
"emacs-overlay": "emacs-overlay",
|
"emacs-overlay": "emacs-overlay",
|
||||||
"emacs-so-long": "emacs-so-long",
|
"emacs-so-long": "emacs-so-long",
|
||||||
|
@@ -36,8 +36,12 @@
|
|||||||
description = "nix-doom-emacs home-manager module";
|
description = "nix-doom-emacs home-manager module";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
doom-emacs.url = "github:doomemacs/doomemacs/master";
|
# TODO: change back to master once we get synced back with upstream changes
|
||||||
|
doom-emacs.url = "github:doomemacs/doomemacs/3853dff5e11655e858d0bfae64b70cb12ef685ac";
|
||||||
doom-emacs.flake = false;
|
doom-emacs.flake = false;
|
||||||
|
# TODO remove pin once we get synced back with upstream changes
|
||||||
|
doom-modeline.url = "github:seagle0128/doom-modeline/ce9899f00af40edb78f58b9af5c3685d67c8eed2";
|
||||||
|
doom-modeline.flake = false;
|
||||||
doom-snippets.url = "github:doomemacs/snippets";
|
doom-snippets.url = "github:doomemacs/snippets";
|
||||||
doom-snippets.flake = false;
|
doom-snippets.flake = false;
|
||||||
emacs-overlay.url = "github:nix-community/emacs-overlay";
|
emacs-overlay.url = "github:nix-community/emacs-overlay";
|
||||||
|
@@ -8,6 +8,15 @@ self: super: {
|
|||||||
buildPhase = ":";
|
buildPhase = ":";
|
||||||
} // args);
|
} // args);
|
||||||
|
|
||||||
|
doom-modeline = self.straightBuild {
|
||||||
|
pname = "doom-modeline";
|
||||||
|
propagatedBuildInputs = with self; [
|
||||||
|
all-the-icons
|
||||||
|
compat
|
||||||
|
shrink-path
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
doom-snippets = self.straightBuild {
|
doom-snippets = self.straightBuild {
|
||||||
pname = "doom-snippets";
|
pname = "doom-snippets";
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
Reference in New Issue
Block a user