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
39 lines
556 B
Nix
39 lines
556 B
Nix
{
|
|
fetchurl,
|
|
writeFennel,
|
|
fennel,
|
|
runCommand,
|
|
lua,
|
|
anoia,
|
|
linotify,
|
|
lualinux,
|
|
stdenv,
|
|
}:
|
|
let
|
|
name = "output-template";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
src = ./.;
|
|
|
|
buildInputs = [ lua ];
|
|
doCheck = true;
|
|
|
|
buildPhase = ''
|
|
cp -p ${
|
|
writeFennel name {
|
|
packages = [
|
|
anoia
|
|
lualinux
|
|
linotify
|
|
];
|
|
mainFunction = "run";
|
|
} ./output-template.fnl
|
|
} ${name}
|
|
'';
|
|
checkPhase = "make check";
|
|
installPhase = ''
|
|
install -D ${name} $out/bin/${name}
|
|
'';
|
|
}
|