2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, libX11, libXinerama, imlib2 }:
|
2016-08-19 10:27:13 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "imlibsetroot";
|
2016-08-19 10:27:13 +01:00
|
|
|
version = "1.2";
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://robotmonkeys.net/wp-content/uploads/2010/03/imlibsetroot-12.tar.gz";
|
2016-08-19 10:27:13 +01:00
|
|
|
sha256 = "8c1b3b7c861e4d865883ec13a96b8e4ab22464a87d4e6c67255b17a88e3cfd1c";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libX11 imlib2 libXinerama ];
|
2022-01-22 17:54:31 +00:00
|
|
|
|
2016-08-19 10:27:13 +01:00
|
|
|
buildPhase = ''
|
2022-01-22 17:54:31 +00:00
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
gcc -g imlibsetroot.c -o imlibsetroot \
|
|
|
|
-I${imlib2.dev}/include -L${imlib2}/lib -lImlib2 \
|
|
|
|
-I${libX11.dev}/include -lXinerama -lX11
|
|
|
|
|
|
|
|
runHook postBuild
|
2016-08-19 10:27:13 +01:00
|
|
|
'';
|
2022-01-22 17:54:31 +00:00
|
|
|
|
2016-08-19 10:27:13 +01:00
|
|
|
installPhase = ''
|
2022-01-22 17:54:31 +00:00
|
|
|
runHook preInstall
|
|
|
|
install -D -m 0755 imlibsetroot -t $out/bin
|
|
|
|
runHook postInstall
|
2016-08-19 10:27:13 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-08-19 10:27:13 +01:00
|
|
|
description = "A Xinerama Aware Background Changer";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://robotmonkeys.net/2010/03/30/imlibsetroot/";
|
2022-01-22 17:54:31 +00:00
|
|
|
license = licenses.mitAdvertising;
|
2016-08-19 10:27:13 +01:00
|
|
|
platforms = platforms.linux;
|
2020-01-21 06:39:52 +00:00
|
|
|
maintainers = with maintainers; [ dwarfmaster ];
|
2016-08-19 10:27:13 +01:00
|
|
|
};
|
|
|
|
}
|