From 998f516fb07330b00f5d9845bf9970fc530ab7be Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 30 Aug 2017 10:23:05 +0100 Subject: [PATCH] terraform: only expose maj.min to top-level We shouldn't encourage users to depend on a tiny release. --- .../networking/cluster/terraform/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 10 ++++------ 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index e86351fcc54..8fd76f7df75 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -43,19 +43,19 @@ in { sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09"; }; - terraform_0_8_8 = generic { + terraform_0_8 = generic { version = "0.8.8"; sha256 = "0ibgpcpvz0bmn3cw60nzsabsrxrbmmym1hv7fx6zmjxiwd68w5gb"; }; - terraform_0_9_11 = generic { + terraform_0_9 = generic { version = "0.9.11"; sha256 = "045zcpd4g9c52ynhgh3213p422ahds63mzhmd2iwcmj88g8i1w6x"; # checks are failing again doCheck = false; }; - terraform_0_10_2 = generic { + terraform_0_10 = generic { version = "0.10.2"; sha256 = "1q7za7jcfqv914a3ynfl7hrqbgwcahgm418kivjrac6p1q26w502"; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d1d7a30fa87..c6c996b5dbd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18976,13 +18976,11 @@ with pkgs; inherit (callPackage ../applications/networking/cluster/terraform {}) terraform_0_8_5 - terraform_0_8_8 - terraform_0_9_11 - terraform_0_10_2; + terraform_0_8 + terraform_0_9 + terraform_0_10 + ; - terraform_0_8 = terraform_0_8_8; - terraform_0_9 = terraform_0_9_11; - terraform_0_10 = terraform_0_10_2; terraform = terraform_0_9; terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {};