notashelf /
4d100741815950891775083d36a2f08d8da3b500
chroma
publicLightweight wallpaper daemon for Wayland
clone
ssh://git@git.notashelf.dev:33/notashelf/chroma.gitCommit 4d1007418159
tarballunverified1 files changed+14-3
@@ -15,7 +15,7 @@ in stdenv.mkDerivation { pname = "chroma";- version = "1.0.0";+ version = "1.0.1"; src = fs.toSource { root = s;@@ -23,8 +23,11 @@ in (s + /include) (s + /protocols) (s + /src)- (s + /Makefile)++ # For testing+ (s + /lib)+ (s + /tests) ]; }; @@ -49,9 +52,17 @@ in makeFlags = [ "PREFIX=$(out)"- "SYSTEMD_DIR=$(out)/lib/systemd/system"+ "SYSTEMD_DIR=$(out)/lib/systemd/system" # FIXME: this is an user service, actually ]; + checkPhase = ''+ runHook preCheck++ make test++ runHook postCheck+ '';+ postInstall = '' install -Dm755 ${../chroma.conf.sample} $out/share/chroma.conf.sample '';