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