From 843da1245275b780a3b8834143005879dca89118 Mon Sep 17 00:00:00 2001 From: Stephan Maka Date: Wed, 25 Nov 2020 18:05:51 +0100 Subject: [PATCH] artiq-fast: add strictDeps=true to fetchcargo.nix part of gitea issue #34. unfortunately, the flag has inferior documentation, so this is just a try. --- artiq-fast/fetchcargo.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/artiq-fast/fetchcargo.nix b/artiq-fast/fetchcargo.nix index 6195a72..d50d0e1 100644 --- a/artiq-fast/fetchcargo.nix +++ b/artiq-fast/fetchcargo.nix @@ -3,6 +3,7 @@ stdenv.mkDerivation { name = "${name}-vendor"; nativeBuildInputs = [ cacert git cargo cargo-vendor ]; + strictDeps = true; inherit src; phases = "unpackPhase patchPhase installPhase";