Merge pull request #197797 from trofi/rss-glx-without-xlibsWrapper

rss-glx: use xorg.* packages directly instead of xlibsWrapper
This commit is contained in:
Sergei Trofimovich 2022-10-29 08:31:43 +01:00 committed by GitHub
commit 16c04508e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
, fetchurl
, autoconf
, pkg-config
, xlibsWrapper
, libX11
, libXext
, libGLU
, libGL
@ -22,14 +22,13 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ autoconf pkg-config ];
buildInputs = [ libGLU libGL xlibsWrapper imagemagick6 libtiff bzip2 ];
buildInputs = [ libGLU libGL libX11 libXext imagemagick6 libtiff bzip2 ];
patches = [
./cstddef.patch
];
NIX_CFLAGS_COMPILE = "-I${imagemagick6.dev}/include/ImageMagick";
NIX_LDFLAGS= "-rpath ${libXext}/lib";
meta = {
description = "Really Slick Screensavers Port to GLX";