2012-07-17 10:14:41 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, bc, perl, pam, libXext, libXScrnSaver, libX11
|
|
|
|
, libXrandr, libXmu, libXxf86vm, libXrender, libXxf86misc, libjpeg, mesa, gtk
|
2016-06-10 12:51:19 +00:00
|
|
|
, libxml2, libglade, intltool, xorg, makeWrapper, gle
|
2011-02-14 13:44:01 +00:00
|
|
|
}:
|
2010-01-26 21:40:32 +00:00
|
|
|
|
2010-08-13 14:06:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-25 13:26:06 +00:00
|
|
|
version = "5.35";
|
2010-06-17 20:28:00 +00:00
|
|
|
name = "xscreensaver-${version}";
|
2010-01-26 21:40:32 +00:00
|
|
|
|
2010-08-13 14:06:23 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.jwz.org/xscreensaver/${name}.tar.gz";
|
2016-05-25 13:26:06 +00:00
|
|
|
sha256 = "08kbb0ry7ih436ab4i5g6lnhaaz13zkcdmbdibrn4j5gm5qq8v0y";
|
2010-01-26 21:40:32 +00:00
|
|
|
};
|
|
|
|
|
2010-08-13 14:06:23 +00:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig bc perl libjpeg mesa gtk libxml2 libglade pam
|
2011-02-14 13:44:01 +00:00
|
|
|
libXext libXScrnSaver libX11 libXrandr libXmu libXxf86vm libXrender
|
2016-06-10 12:51:19 +00:00
|
|
|
libXxf86misc intltool xorg.appres makeWrapper gle
|
2011-02-14 13:44:01 +00:00
|
|
|
];
|
2010-01-26 21:40:32 +00:00
|
|
|
|
2015-03-21 12:35:51 +00:00
|
|
|
preConfigure =
|
2012-07-17 10:14:41 +00:00
|
|
|
''
|
2015-03-21 12:35:51 +00:00
|
|
|
# Fix installation paths for GTK resources.
|
2012-07-17 10:14:41 +00:00
|
|
|
sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' \
|
2015-03-21 12:35:51 +00:00
|
|
|
-i driver/Makefile.in po/Makefile.in.in
|
2012-07-17 10:14:41 +00:00
|
|
|
'';
|
|
|
|
|
2010-01-26 21:40:32 +00:00
|
|
|
configureFlags =
|
2011-02-14 13:44:01 +00:00
|
|
|
[ "--with-gl" "--with-pam" "--with-pixbuf" "--with-proc-interrupts"
|
2010-08-13 14:06:23 +00:00
|
|
|
"--with-dpms-ext" "--with-randr-ext" "--with-xinerama-ext"
|
|
|
|
"--with-xf86vmode-ext" "--with-xf86gamma-ext" "--with-randr-ext"
|
2016-06-10 12:51:19 +00:00
|
|
|
"--with-xshm-ext" "--with-xdbe-ext"
|
2010-06-18 19:33:15 +00:00
|
|
|
"--with-x-app-defaults=\${out}/share/xscreensaver/app-defaults"
|
2010-01-26 21:40:32 +00:00
|
|
|
];
|
|
|
|
|
2016-05-09 05:12:46 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/xscreensaver-text \
|
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [xorg.appres]}
|
|
|
|
'';
|
|
|
|
|
2010-01-26 21:40:32 +00:00
|
|
|
meta = {
|
2012-04-06 19:30:30 +00:00
|
|
|
homepage = "http://www.jwz.org/xscreensaver/";
|
2010-01-26 21:40:32 +00:00
|
|
|
description = "A set of screensavers";
|
2010-08-13 14:06:23 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin urkud ];
|
2014-08-09 10:28:16 +00:00
|
|
|
platforms = with stdenv.lib.platforms; allBut cygwin;
|
2014-09-02 10:25:04 +00:00
|
|
|
inherit version;
|
|
|
|
downloadPage = "http://www.jwz.org/xscreensaver/download.html";
|
|
|
|
updateWalker = true;
|
2010-01-26 21:40:32 +00:00
|
|
|
};
|
2010-08-13 14:06:23 +00:00
|
|
|
}
|