Skip to content

Commit

Permalink
xtrap: Added libXTrap and utilmacros as dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiaao committed Jul 1, 2019
1 parent 9fc8fef commit 44ef3ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/servers/x11/xorg/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2847,16 +2847,16 @@ lib.makeScope newScope (self: with self; {
meta.platforms = stdenv.lib.platforms.unix;
}) {};

xtrap = callPackage ({ stdenv, pkgconfig, fetchurl, libX11, libXt }: stdenv.mkDerivation {
xtrap = callPackage ({ stdenv, pkgconfig, fetchurl, libX11, libXTrap, libXt }: stdenv.mkDerivation {
name = "xtrap-1.0.3";
builder = ./builder.sh;
src = fetchurl {
url = mirror://xorg/individual/app/xtrap-1.0.3.tar.bz2;
sha256 = "0sqm4j1zflk1s94iq4waa70hna1xcys88v9a70w0vdw66czhvj2j";
};
hardeningDisable = [ "bindnow" "relro" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 libXt ];
nativeBuildInputs = [ pkgconfig utilmacros ];
buildInputs = [ libX11 libXTrap libXt ];
meta.platforms = stdenv.lib.platforms.unix;
}) {};

Expand Down

0 comments on commit 44ef3ea

Please sign in to comment.