1
0
liminix/pkgs/watch-outputs/default.nix

43 lines
650 B
Nix
Raw Permalink Normal View History

{
fetchurl,
writeFennel,
fennel,
2025-02-22 00:10:19 +00:00
fennelrepl,
runCommand,
lua,
anoia,
linotify,
lualinux,
stdenv,
}:
let
name = "watch-outputs";
in
stdenv.mkDerivation {
inherit name;
src = ./.;
buildInputs = [ lua ];
2025-02-22 00:10:19 +00:00
nativeBuildInputs = [ fennelrepl ] ;
buildPhase = ''
fennelrepl --test ./watch-outputs.fnl
cp -p ${
writeFennel name {
packages = [
anoia
lualinux
linotify
fennel
];
macros = [ anoia.dev ];
mainFunction = "run";
} ./watch-outputs.fnl
} ${name}
'';
2025-02-27 20:55:30 +00:00
installPhase = ''
install -D ${name} $out/bin/${name}
'';
}