2024-08-14 21:58:17 +00:00
|
|
|
{
|
|
|
|
fetchurl,
|
|
|
|
writeFennel,
|
|
|
|
fennel,
|
2025-02-22 00:10:19 +00:00
|
|
|
fennelrepl,
|
2024-08-14 21:58:17 +00:00
|
|
|
runCommand,
|
|
|
|
lua,
|
|
|
|
anoia,
|
|
|
|
linotify,
|
|
|
|
lualinux,
|
2025-02-10 21:55:08 +00:00
|
|
|
stdenv,
|
2024-08-14 21:58:17 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
let
|
|
|
|
name = "watch-outputs";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2024-08-14 21:58:17 +00:00
|
|
|
inherit name;
|
|
|
|
src = ./.;
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
buildInputs = [ lua ];
|
2025-02-22 00:10:19 +00:00
|
|
|
nativeBuildInputs = [ fennelrepl ] ;
|
2025-02-10 21:55:08 +00:00
|
|
|
# doCheck = true;
|
2024-08-14 21:58:17 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
2025-02-10 21:55:08 +00:00
|
|
|
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
|
2024-08-14 21:58:17 +00:00
|
|
|
'';
|
2025-02-10 21:55:08 +00:00
|
|
|
# checkPhase = "make check";
|
2024-08-14 21:58:17 +00:00
|
|
|
installPhase = ''
|
|
|
|
install -D ${name} $out/bin/${name}
|
|
|
|
'';
|
|
|
|
}
|