mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-23 14:03:46 -05:00
flake: rename inputs to prevent errors on update
If input name contains `.` character then `invalid flake input path element` error message is displayed on running `nix flake update --update-input x.y`
This commit is contained in:
@@ -104,7 +104,7 @@ let
|
|||||||
# Stage 2: install dependencies and byte-compile prepared source
|
# Stage 2: install dependencies and byte-compile prepared source
|
||||||
doomLocal =
|
doomLocal =
|
||||||
let
|
let
|
||||||
straight-env = pkgs.callPackage (lock "nix-straight.el") {
|
straight-env = pkgs.callPackage (lock "nix-straight") {
|
||||||
emacsPackages =
|
emacsPackages =
|
||||||
if bundledPackages then
|
if bundledPackages then
|
||||||
let
|
let
|
||||||
|
12
flake.nix
12
flake.nix
@@ -52,8 +52,8 @@
|
|||||||
evil-quick-diff.flake = false;
|
evil-quick-diff.flake = false;
|
||||||
explain-pause-mode.url = "github:lastquestion/explain-pause-mode";
|
explain-pause-mode.url = "github:lastquestion/explain-pause-mode";
|
||||||
explain-pause-mode.flake = false;
|
explain-pause-mode.flake = false;
|
||||||
"nix-straight.el".url = "github:vlaci/nix-straight.el/v2.1.0";
|
nix-straight.url = "github:vlaci/nix-straight.el/v2.1.0";
|
||||||
"nix-straight.el".flake = false;
|
nix-straight.flake = false;
|
||||||
nose.url= "github:emacsattic/nose";
|
nose.url= "github:emacsattic/nose";
|
||||||
nose.flake = false;
|
nose.flake = false;
|
||||||
ob-racket.url = "github:xchrishawk/ob-racket";
|
ob-racket.url = "github:xchrishawk/ob-racket";
|
||||||
@@ -64,10 +64,10 @@
|
|||||||
org-yt.flake = false;
|
org-yt.flake = false;
|
||||||
php-extras.url = "github:arnested/php-extras";
|
php-extras.url = "github:arnested/php-extras";
|
||||||
php-extras.flake = false;
|
php-extras.flake = false;
|
||||||
"reveal.js".url = "github:hakimel/reveal.js";
|
revealjs.url = "github:hakimel/reveal.js";
|
||||||
"reveal.js".flake = false;
|
revealjs.flake = false;
|
||||||
"rotate-text.el".url = "github:debug-ito/rotate-text.el";
|
rotate-text.url = "github:debug-ito/rotate-text.el";
|
||||||
"rotate-text.el".flake = false;
|
rotate-text.flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs: {
|
outputs = inputs: {
|
||||||
|
@@ -72,8 +72,7 @@ self: super: {
|
|||||||
};
|
};
|
||||||
|
|
||||||
revealjs = self.straightBuild {
|
revealjs = self.straightBuild {
|
||||||
pname = "reveal.js";
|
pname = "revealjs";
|
||||||
ename = "revealjs";
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
LISPDIR=$out/share/emacs/site-lisp
|
LISPDIR=$out/share/emacs/site-lisp
|
||||||
@@ -84,8 +83,7 @@ self: super: {
|
|||||||
};
|
};
|
||||||
|
|
||||||
rotate-text = self.straightBuild {
|
rotate-text = self.straightBuild {
|
||||||
pname = "rotate-text.el";
|
pname = "rotate-text";
|
||||||
ename = "rotate-text";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
so-long = self.straightBuild {
|
so-long = self.straightBuild {
|
||||||
|
Reference in New Issue
Block a user