2024-04-15 20:15:07 +00:00
|
|
|
{
|
|
|
|
lua
|
|
|
|
, nellie
|
2024-04-24 19:44:32 +00:00
|
|
|
, lualinux
|
2024-04-20 15:53:43 +00:00
|
|
|
, writeFennel
|
2024-04-15 20:15:07 +00:00
|
|
|
, runCommand
|
|
|
|
, anoia
|
|
|
|
, fennel
|
|
|
|
, stdenv
|
|
|
|
, fennelrepl
|
2024-06-15 13:59:34 +00:00
|
|
|
, s6-rc-up-tree
|
2024-04-15 20:15:07 +00:00
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "uevent-watch";
|
|
|
|
src = ./.;
|
2024-06-15 13:59:34 +00:00
|
|
|
nativeBuildInputs = [ fennelrepl makeWrapper ];
|
|
|
|
propagatedBuildInputs = [ s6-rc-up-tree ];
|
2024-04-15 20:15:07 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2024-04-20 15:53:43 +00:00
|
|
|
cp -p ${writeFennel "uevent-watch" {
|
2024-06-29 21:36:05 +00:00
|
|
|
packages = [fennel anoia nellie lualinux s6-rc-up-tree] ;
|
2024-04-20 15:53:43 +00:00
|
|
|
mainFunction = "run";
|
|
|
|
} ./watch.fnl} $out/bin/uevent-watch
|
2024-04-15 20:15:07 +00:00
|
|
|
'';
|
|
|
|
checkPhase = ''
|
|
|
|
fennelrepl ./test.fnl
|
|
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
}
|