mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21e3ff658a
Scilab note: the parameters already had pointed to nonexistent dirs before this set of refactoring. But that config wasn't even used by default.
26 lines
779 B
Nix
26 lines
779 B
Nix
{stdenv, fetchurl, pkgconfig, xlibsWrapper, libXext, mesa, imagemagick, libtiff, bzip2}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.1";
|
|
name = "rss-glx-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/rss-glx/rss-glx_${version}.tar.bz2";
|
|
sha256 = "1aikafjqrfmv23jnrrm5d56dg6injh4l67zjdxzdapv9chw7g3cg";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig mesa xlibsWrapper imagemagick libtiff bzip2 ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${imagemagick}/include/ImageMagick";
|
|
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.
|
|
'';
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|