haskell-Xauth: fix reference to libXau system library
This commit is contained in:
parent
0af5205732
commit
19f74eebd6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue