lol

Merge pull request #17913 from brainrape/update-terraform

terraform: 0.7.0 -> 0.7.1

authored by zimbatm.tngl.sh and committed by

GitHub e2c27e2f 21b69058

+8 -2
+8 -2
pkgs/applications/networking/cluster/terraform/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "terraform-${version}"; 5 - version = "0.7.0"; 5 + version = "0.7.1"; 6 6 rev = "v${version}"; 7 7 8 8 goPackagePath = "github.com/hashicorp/terraform"; ··· 11 11 inherit rev; 12 12 owner = "hashicorp"; 13 13 repo = "terraform"; 14 - sha256 = "0k5d6zph6sq1qg8vi5jmk7apy6v67xn5i7rqjamyr5an7lpxssc9"; 14 + sha256 = "1nvz4nqkn8pl25zyw7x5079dbzmwdxsar9gbcjk1srfpa746j1y4"; 15 15 }; 16 16 17 17 postInstall = '' ··· 22 22 fi 23 23 done 24 24 ''; 25 + 26 + meta = with stdenv.lib; { 27 + description = "Tool for building, changing, and versioning infrastructure"; 28 + homepage = "https://www.terraform.io/"; 29 + license = licenses.mpl20; 30 + }; 25 31 }