summaryrefslogtreecommitdiff
path: root/lullaby.nix
blob: a80696ba879b95e2882a04e35f958f8c741c66d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ mkDerivation, base, stdenv }:
mkDerivation {
  pname = "lullaby";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base ];
  homepage = "https://git.yggdrasil.li/gkleen/pub/lullaby";
  description = "A daemon attaching executable hooks to systemd's inhibitor API";
  license = stdenv.lib.licenses.mit;
}