haskell-Xauth: fix reference to libXau system library
This commit is contained in:
parent
0af5205732
commit
19f74eebd6
@ -15132,17 +15132,17 @@ self: {
|
|||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"Xauth" = callPackage
|
"Xauth" = callPackage
|
||||||
({ mkDerivation, base, xau }:
|
({ mkDerivation, base, libXau }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "Xauth";
|
pname = "Xauth";
|
||||||
version = "0.1";
|
version = "0.1";
|
||||||
sha256 = "1mvflp6y1nz9961gngbwk0b7wr8sx3p6296jfvvb6ln1kvm2scxs";
|
sha256 = "1mvflp6y1nz9961gngbwk0b7wr8sx3p6296jfvvb6ln1kvm2scxs";
|
||||||
buildDepends = [ base ];
|
buildDepends = [ base ];
|
||||||
pkgconfigDepends = [ xau ];
|
pkgconfigDepends = [ libXau ];
|
||||||
description = "A binding to the X11 authentication library";
|
description = "A binding to the X11 authentication library";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
hydraPlatforms = stdenv.lib.platforms.none;
|
||||||
}) { xau = null;};
|
}) { inherit (pkgs.xlibs) libXau;};
|
||||||
|
|
||||||
"Xec" = callPackage
|
"Xec" = callPackage
|
||||||
({ mkDerivation, base, binary, bytestring, cairo, containers
|
({ mkDerivation, base, binary, bytestring, cairo, containers
|
||||||
|
Loading…
x
Reference in New Issue
Block a user