1
0
liminix/pkgs/output-template/default.nix

40 lines
637 B
Nix
Raw Normal View History

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