2019-11-10 16:44:34 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, xlibsWrapper, libXext, libGLU, libGL, imagemagick, libtiff, bzip2}:
|
2015-03-21 12:46:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.9.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "rss-glx";
|
2006-01-28 02:10:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-03-21 12:46:47 +00:00
|
|
|
url = "mirror://sourceforge/rss-glx/rss-glx_${version}.tar.bz2";
|
|
|
|
sha256 = "1aikafjqrfmv23jnrrm5d56dg6injh4l67zjdxzdapv9chw7g3cg";
|
2006-01-28 02:10:26 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-11-10 16:44:34 +00:00
|
|
|
buildInputs = [ libGLU libGL xlibsWrapper imagemagick libtiff bzip2 ];
|
2008-06-14 21:55:48 +01:00
|
|
|
|
2016-05-22 12:41:15 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${imagemagick.dev}/include/ImageMagick";
|
2015-03-21 12:46:47 +00:00
|
|
|
NIX_LDFLAGS= "-rpath ${libXext}/lib";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Really Slick Screensavers Port to GLX";
|
|
|
|
longDescription = ''
|
|
|
|
This package currently contains all of the screensavers from the
|
|
|
|
original collection, plus a few others.
|
|
|
|
'';
|
2015-05-30 14:14:10 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-03-21 12:46:47 +00:00
|
|
|
};
|
2006-01-28 02:10:26 +00:00
|
|
|
}
|