2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libX11, imlib2
|
2016-01-06 08:12:04 +00:00
|
|
|
, enableXinerama ? true, libXinerama ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert enableXinerama -> libXinerama != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-25 19:39:51 +01:00
|
|
|
version = "2.0.2";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "setroot";
|
2016-01-06 08:12:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ttzhou";
|
|
|
|
repo = "setroot";
|
|
|
|
rev = "v${version}";
|
2019-05-25 19:39:51 +01:00
|
|
|
sha256 = "0w95828v0splk7bj5kfacp4pq6wxpyamvyjmahyvn5hc3ycq21mq";
|
2016-01-06 08:12:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libX11 imlib2 ]
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional enableXinerama libXinerama;
|
2016-01-06 08:12:04 +00:00
|
|
|
|
2021-02-16 11:48:46 +00:00
|
|
|
buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" (if enableXinerama then "xinerama=1" else "xinerama=0") ] ;
|
2016-01-06 08:12:04 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
2016-01-06 08:12:04 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-01-06 08:12:04 +00:00
|
|
|
description = "Simple X background setter inspired by imlibsetroot and feh";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ttzhou/setroot";
|
2016-01-06 08:12:04 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2017-12-05 22:20:11 +00:00
|
|
|
maintainers = [ maintainers.vyp ];
|
2016-01-06 08:12:04 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|