3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/X11/setroot/default.nix

33 lines
879 B
Nix
Raw Normal View History

2016-01-06 08:12:04 +00:00
{ stdenv, lib, fetchFromGitHub, libX11, imlib2
, enableXinerama ? true, libXinerama ? null
}:
assert enableXinerama -> libXinerama != null;
stdenv.mkDerivation rec {
2017-07-23 20:38:06 +01:00
version = "2.0.1";
2016-01-06 08:12:04 +00:00
name = "setroot-${version}";
src = fetchFromGitHub {
owner = "ttzhou";
repo = "setroot";
rev = "v${version}";
2017-07-23 20:38:06 +01:00
sha256 = "01krjfc3xpp0wbqz9nvf1n34gkpd41gysn289sj1wcjxia4n4gsi";
2016-01-06 08:12:04 +00:00
};
buildInputs = [ libX11 imlib2 ]
++ stdenv.lib.optional enableXinerama libXinerama;
2016-08-12 06:09:28 +01:00
buildFlags = "CC=cc " + (if enableXinerama then "xinerama=1" else "xinerama=0");
2016-01-06 08:12:04 +00:00
installFlags = "DESTDIR=$(out) PREFIX=";
meta = with stdenv.lib; {
description = "Simple X background setter inspired by imlibsetroot and feh";
homepage = https://github.com/ttzhou/setroot;
license = licenses.gpl3Plus;
maintainers = [ maintainers.vyp ];
2016-01-06 08:12:04 +00:00
platforms = platforms.unix;
};
}