diff options
| author | Jörg Thalheim <joerg@thalheim.io> | 2020-03-18 13:13:32 +0000 |
|---|---|---|
| committer | Jörg Thalheim <joerg@thalheim.io> | 2020-03-23 08:16:46 +0000 |
| commit | 5f3f4cb1bef9f613ef47ee74fcea039157ae695d (patch) | |
| tree | 763f699378831ca02c642d4bc2b2c8722c705ead | |
| parent | coyim: fix strict deps build (diff) | |
| download | nixpkgs-5f3f4cb1bef9f613ef47ee74fcea039157ae695d.tar.gz | |
terraform-libvirt: fix strict deps build
| -rw-r--r-- | pkgs/applications/networking/cluster/terraform-providers/libvirt/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/terraform-providers/libvirt/default.nix b/pkgs/applications/networking/cluster/terraform-providers/libvirt/default.nix index 40a6bb11c7da..c2014a4d7bf1 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/libvirt/default.nix +++ b/pkgs/applications/networking/cluster/terraform-providers/libvirt/default.nix @@ -30,7 +30,9 @@ buildGoPackage rec { sha256 = "1l2n97nj6g44n7bhnbjwmv36xi6754p4iq2qnpkdh39x4384a0zz"; }; - buildInputs = [ libvirt pkgconfig makeWrapper ]; + nativeBuildInputs = [ pkgconfig makeWrapper ]; + + buildInputs = [ libvirt ]; # mkisofs needed to create ISOs holding cloud-init data, # and wrapped to terraform via deecb4c1aab780047d79978c636eeb879dd68630 @@ -48,4 +50,3 @@ buildGoPackage rec { maintainers = with maintainers; [ mic92 ]; }; } - |
