nixpkgs/pkgs/tools/X11/setroot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.1 KiB
Nix
Raw Normal View History

2022-05-21 19:27:08 +00:00
{ lib, stdenv, fetchFromGitHub, libX11, imlib2, pkg-config, fetchpatch
, enableXinerama ? true, libXinerama
2016-01-06 08:12:04 +00:00
}:
stdenv.mkDerivation rec {
2019-05-25 18:39:51 +00:00
version = "2.0.2";
pname = "setroot";
2016-01-06 08:12:04 +00:00
src = fetchFromGitHub {
owner = "ttzhou";
repo = "setroot";
rev = "v${version}";
2019-05-25 18:39:51 +00:00
sha256 = "0w95828v0splk7bj5kfacp4pq6wxpyamvyjmahyvn5hc3ycq21mq";
2016-01-06 08:12:04 +00:00
};
2022-05-21 19:27:08 +00:00
patches = [
(fetchpatch {
url = "https://github.com/ttzhou/setroot/commit/d8ff8edd7d7594d276d741186bf9ccf0bce30277.patch";
sha256 = "sha256-e0iMSpiOmTOpQnp599fjH2UCPU4Oq1VKXcVypVoR9hw=";
})
];
nativeBuildInputs = [ pkg-config ];
2016-01-06 08:12:04 +00:00
buildInputs = [ libX11 imlib2 ]
2022-05-21 19:27:08 +00:00
++ lib.optionals enableXinerama [ libXinerama ];
2016-01-06 08:12:04 +00:00
2022-05-21 19:27:08 +00:00
buildFlags = [ (if enableXinerama then "xinerama=1" else "xinerama=0") ] ;
2016-01-06 08:12:04 +00:00
2022-05-21 19:27:08 +00:00
installFlags = [ "PREFIX=$(out)" ];
2016-01-06 08:12:04 +00:00
meta = with lib; {
2016-01-06 08:12:04 +00:00
description = "Simple X background setter inspired by imlibsetroot and feh";
homepage = "https://github.com/ttzhou/setroot";
2016-01-06 08:12:04 +00:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.vyp ];
2016-01-06 08:12:04 +00:00
platforms = platforms.unix;
};
}