haskell-Xauth: fix reference to libXau system library

This commit is contained in:
Peter Simons 2015-03-03 12:00:00 +01:00
parent 0af5205732
commit 19f74eebd6
1 changed files with 3 additions and 3 deletions

View File

@ -15132,17 +15132,17 @@ self: {
}) {};
"Xauth" = callPackage
({ mkDerivation, base, xau }:
({ mkDerivation, base, libXau }:
mkDerivation {
pname = "Xauth";
version = "0.1";
sha256 = "1mvflp6y1nz9961gngbwk0b7wr8sx3p6296jfvvb6ln1kvm2scxs";
buildDepends = [ base ];
pkgconfigDepends = [ xau ];
pkgconfigDepends = [ libXau ];
description = "A binding to the X11 authentication library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) { xau = null;};
}) { inherit (pkgs.xlibs) libXau;};
"Xec" = callPackage
({ mkDerivation, base, binary, bytestring, cairo, containers