Skip to content

Commit

Permalink
Merge pull request #197797 from trofi/rss-glx-without-xlibsWrapper
Browse files Browse the repository at this point in the history
rss-glx: use xorg.* packages directly instead of xlibsWrapper
  • Loading branch information
trofi authored Oct 29, 2022
2 parents f3e476f + 7824b48 commit 16c0450
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pkgs/misc/screensavers/rss-glx/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
, fetchurl
, autoconf
, pkg-config
, xlibsWrapper
, libX11
, libXext
, libGLU
, libGL
Expand All @@ -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";
Expand Down

0 comments on commit 16c0450

Please sign in to comment.