hackage-packages.nix: avoid broken reference to libudev
This commit is contained in:
parent
810c3e31b3
commit
4ea202d328
|
@ -207937,7 +207937,7 @@ self: {
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"udev" = callPackage
|
"udev" = callPackage
|
||||||
({ mkDerivation, base, bytestring, libudev, posix-paths, unix }:
|
({ mkDerivation, base, bytestring, posix-paths, systemd, unix }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "udev";
|
pname = "udev";
|
||||||
version = "0.1.0.0";
|
version = "0.1.0.0";
|
||||||
|
@ -207945,12 +207945,12 @@ self: {
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
libraryHaskellDepends = [ base bytestring posix-paths unix ];
|
libraryHaskellDepends = [ base bytestring posix-paths unix ];
|
||||||
libraryPkgconfigDepends = [ libudev ];
|
libraryPkgconfigDepends = [ systemd ];
|
||||||
description = "libudev bindings";
|
description = "libudev bindings";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
hydraPlatforms = stdenv.lib.platforms.none;
|
||||||
}) {inherit (pkgs) libudev;};
|
}) {inherit (pkgs) systemd;};
|
||||||
|
|
||||||
"udp-conduit" = callPackage
|
"udp-conduit" = callPackage
|
||||||
({ mkDerivation, base, chunked-data, conduit-combinators
|
({ mkDerivation, base, chunked-data, conduit-combinators
|
||||||
|
|
Loading…
Reference in New Issue