liminix/pkgs/uevent-watch/default.nix

27 lines
539 B
Nix

{ nellie
, lualinux
, writeFennel
, anoia
, fennel
, stdenv
, fennelrepl
, s6-rc-up-tree
}:
stdenv.mkDerivation {
name = "uevent-watch";
src = ./.;
nativeBuildInputs = [ fennelrepl makeWrapper ];
propagatedBuildInputs = [ s6-rc-up-tree ];
installPhase = ''
mkdir -p $out/bin
cp -p ${writeFennel "uevent-watch" {
packages = [fennel anoia nellie lualinux s6-rc-up-tree] ;
mainFunction = "run";
} ./watch.fnl} $out/bin/uevent-watch
'';
checkPhase = ''
fennelrepl ./test.fnl
'';
doCheck = true;
}