summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2017-04-01 12:54:24 +0100
committerzimbatm <zimbatm@zimbatm.com>2017-04-01 12:54:53 +0100
commitae034020aa18455d86202be50bff0939aebfb18c (patch)
tree4b31f3355e359ddd81653e73be3fb811daa28162 /pkgs
parent1afd3ceaaab5d11e17f47a473c6e6642aa074f18 (diff)
downloadnixpkgs-ae034020aa18455d86202be50bff0939aebfb18c.tar
nixpkgs-ae034020aa18455d86202be50bff0939aebfb18c.tar.gz
nixpkgs-ae034020aa18455d86202be50bff0939aebfb18c.tar.bz2
nixpkgs-ae034020aa18455d86202be50bff0939aebfb18c.tar.lz
nixpkgs-ae034020aa18455d86202be50bff0939aebfb18c.tar.xz
nixpkgs-ae034020aa18455d86202be50bff0939aebfb18c.tar.zst
nixpkgs-ae034020aa18455d86202be50bff0939aebfb18c.zip
fixup! terraform: 0.9.1 -> 0.9.2
use fetchpatch to improve patch download hash stability
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/cluster/terraform/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 42a8465bf8a..93a9894ba6b 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, buildGoPackage, fetchurl, fetchFromGitHub }:
+{ stdenv, lib, buildGoPackage, fetchpatch, fetchFromGitHub }:
 
 let
   goPackagePath = "github.com/hashicorp/terraform";
@@ -54,13 +54,13 @@ in {
     sha256 = "1yj5x1d10028fm3v3gjyjdn128ps0as345hr50y8x3vn86n70lxl";
 
     patches = [
-      (fetchurl {
+      (fetchpatch {
         url = "https://github.com/hashicorp/terraform/pull/13237.patch";
-        sha256 = "1f7hr1l5hck9mmqk01p6wxbfv9r3b0yi9ypz7bcmikp3bikza98x";
+        sha256 = "03c2nq12gvqqp12znvl3lmiviwsqksx4nrplv09fns2kz2gyfnbm";
       })
-      (fetchurl {
+      (fetchpatch {
         url = "https://github.com/hashicorp/terraform/pull/13248.patch";
-        sha256 = "1qc57kjhlqg5339him9bg4izdphins2fjjhb4ffr7bv9lb5k0hkr";
+        sha256 = "0awj8gaic0j7a69is95f2rll3yip4n6avai1jh20b1x7dybdrp5m";
       })
     ];