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

43 lines
643 B
Nix
Raw 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 ] ;
# doCheck = true;
buildPhase = ''
cp -p ${
writeFennel name {
packages = [
anoia
lualinux
linotify
fennel
];
mainFunction = "run";
} ./watch-outputs.fnl
} ${name}
2025-02-22 00:10:19 +00:00
make check
'';
# checkPhase = "make check";
installPhase = ''
install -D ${name} $out/bin/${name}
'';
}