2015-09-15 09:13:22 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, xlibsWrapper, libXext, mesa, imagemagick, libtiff, bzip2}:
|
2015-03-21 12:46:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.9.1";
|
|
|
|
name = "rss-glx-${version}";
|
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
|
|
|
};
|
|
|
|
|
2015-09-15 09:13:22 +00:00
|
|
|
buildInputs = [ pkgconfig mesa xlibsWrapper imagemagick libtiff bzip2 ];
|
2008-06-14 20:55:48 +00:00
|
|
|
|
2016-05-22 11:41:15 +00: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 13:14:10 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-03-21 12:46:47 +00:00
|
|
|
};
|
2006-01-28 02:10:26 +00:00
|
|
|
}
|