nixfmt-rfc-style
There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
This commit is contained in:
@@ -8,30 +8,34 @@
|
||||
anoia,
|
||||
linotify,
|
||||
lualinux,
|
||||
stdenv
|
||||
stdenv,
|
||||
}:
|
||||
let name = "watch-ssh-keys";
|
||||
in stdenv.mkDerivation {
|
||||
let
|
||||
name = "watch-ssh-keys";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
src = ./.;
|
||||
|
||||
buildInputs = [lua];
|
||||
nativeBuildInputs = [fennelrepl];
|
||||
buildInputs = [ lua ];
|
||||
nativeBuildInputs = [ fennelrepl ];
|
||||
|
||||
buildPhase = ''
|
||||
fennelrepl --test ./watch-ssh-keys.fnl
|
||||
cp -p ${writeFennel name {
|
||||
packages = [
|
||||
anoia
|
||||
lualinux
|
||||
linotify
|
||||
fennel
|
||||
];
|
||||
macros = [
|
||||
anoia.dev
|
||||
];
|
||||
mainFunction = "run";
|
||||
} ./watch-ssh-keys.fnl } ${name}
|
||||
cp -p ${
|
||||
writeFennel name {
|
||||
packages = [
|
||||
anoia
|
||||
lualinux
|
||||
linotify
|
||||
fennel
|
||||
];
|
||||
macros = [
|
||||
anoia.dev
|
||||
];
|
||||
mainFunction = "run";
|
||||
} ./watch-ssh-keys.fnl
|
||||
} ${name}
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
|
Reference in New Issue
Block a user