summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorColin <486199+c00w@users.noreply.github.com>2019-10-23 20:43:31 -0400
committerWael Nasreddine <wael.nasreddine@gmail.com>2019-10-23 17:43:31 -0700
commit52c8d46286f56fb7f91bc24e4c2487b77d388fde (patch)
tree269e9c9fb6da8dc4a72b1158f2bfbc2b5d228b36 /pkgs/development/tools
parent563c526b758434c965340de579c6ff4517078546 (diff)
downloadnixpkgs-52c8d46286f56fb7f91bc24e4c2487b77d388fde.tar
nixpkgs-52c8d46286f56fb7f91bc24e4c2487b77d388fde.tar.gz
nixpkgs-52c8d46286f56fb7f91bc24e4c2487b77d388fde.tar.bz2
nixpkgs-52c8d46286f56fb7f91bc24e4c2487b77d388fde.tar.lz
nixpkgs-52c8d46286f56fb7f91bc24e4c2487b77d388fde.tar.xz
nixpkgs-52c8d46286f56fb7f91bc24e4c2487b77d388fde.tar.zst
nixpkgs-52c8d46286f56fb7f91bc24e4c2487b77d388fde.zip
conftest: Remove sumdb override now that #34866 is merged (#71479)
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/conftest/default.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkgs/development/tools/conftest/default.nix b/pkgs/development/tools/conftest/default.nix
index a4a6a7998b0..17dbcc7ff1f 100644
--- a/pkgs/development/tools/conftest/default.nix
+++ b/pkgs/development/tools/conftest/default.nix
@@ -4,15 +4,6 @@ buildGoModule rec {
   pname = "conftest";
   version = "0.14.0";
 
-  # Something subtle in the go sum db is causing every download to
-  # get a new sum (and thus breaking the hash). This disables the
-  # fetching of the sum from the go sum database.
-  modBuildPhase = ''
-    runHook preBuild
-    GONOSUMDB=* go mod download
-    runHook postBuild
-  '';
-
   src = fetchFromGitHub {
     owner = "instrumenta";
     repo = "conftest";