biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / X11 / xssstate / default.nix
blobd4ec63a71668000fcc5bcf622d0b317a0fdb77e1
1 { lib
2 , stdenv
3 , fetchgit
4 , libX11
5 , libXScrnSaver
6 }:
7 stdenv.mkDerivation (finalAttrs: {
8   pname = "xssstate";
9   version = "1.1-unstable-2022-09-24";
11   src = fetchgit {
12     url = "https://git.suckless.org/xssstate/";
13     rev = "5d8e9b49ce2970f786f1e5aa12bbaae83900453f";
14     hash = "sha256-Aor12tU1I/qNZCdBhZcvNK1FWFh0HYK8CEI29X5yoeA=";
15   };
17   buildInputs = [
18     libX11
19     libXScrnSaver
20   ];
22   makeFlags = [
23     "PREFIX=${placeholder "out"}"
24     "VERSION=${finalAttrs.version}"
25   ];
27   meta = with lib; {
28     description = "Simple tool to retrieve the X screensaver state";
29     license = licenses.mit;
30     maintainers = with maintainers; [ onemoresuza ];
31     platforms = platforms.linux;
32     mainProgram = "xssstate";
33   };