2024-08-10 22:06:47 +00:00
|
|
|
{
|
|
|
|
fetchurl,
|
|
|
|
writeFennel,
|
|
|
|
fennel,
|
2025-03-02 21:09:11 +00:00
|
|
|
fennelrepl,
|
2024-08-10 22:06:47 +00:00
|
|
|
runCommand,
|
|
|
|
lua,
|
|
|
|
anoia,
|
|
|
|
linotify,
|
|
|
|
lualinux,
|
2025-02-10 21:55:08 +00:00
|
|
|
stdenv,
|
2024-08-10 22:06:47 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
let
|
|
|
|
name = "output-template";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2024-08-10 22:06:47 +00:00
|
|
|
inherit name;
|
|
|
|
src = ./.;
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
buildInputs = [ lua ];
|
2025-03-02 21:09:11 +00:00
|
|
|
nativeBuildInputs = [ fennelrepl ] ;
|
2024-08-10 22:06:47 +00:00
|
|
|
buildPhase = ''
|
2025-03-02 21:09:11 +00:00
|
|
|
fennelrepl --test ./output-template.fnl
|
2025-02-10 21:55:08 +00:00
|
|
|
cp -p ${
|
|
|
|
writeFennel name {
|
|
|
|
packages = [
|
|
|
|
anoia
|
|
|
|
lualinux
|
|
|
|
linotify
|
|
|
|
];
|
2025-03-02 21:09:11 +00:00
|
|
|
macros = [ anoia.dev ];
|
2025-02-10 21:55:08 +00:00
|
|
|
mainFunction = "run";
|
|
|
|
} ./output-template.fnl
|
|
|
|
} ${name}
|
2024-08-10 22:06:47 +00:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
install -D ${name} $out/bin/${name}
|
|
|
|
'';
|
|
|
|
}
|