Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 53de71be2cad
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cef39f908900
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 7, 2020

  1. terragrunt: 0.23.2 -> 0.23.14

    Moved to use go modules build
    Deleted old deps.nix file used with dep
    06kellyjac authored and Jon committed May 7, 2020
    Copy the full SHA
    cef39f9 View commit details
Showing with 9 additions and 537 deletions.
  1. +9 −12 pkgs/applications/networking/cluster/terragrunt/default.nix
  2. +0 −525 pkgs/applications/networking/cluster/terragrunt/deps.nix
21 changes: 9 additions & 12 deletions pkgs/applications/networking/cluster/terragrunt/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub, terraform, makeWrapper }:
{ stdenv, lib, buildGoModule, fetchFromGitHub, terraform, makeWrapper }:

buildGoPackage rec {
buildGoModule rec {
pname = "terragrunt";
version = "0.23.2";
version = "0.23.14";

goPackagePath = "github.com/gruntwork-io/terragrunt";

src = fetchFromGitHub {
owner = "gruntwork-io";
repo = "terragrunt";
rev = "v${version}";
sha256 = "1r3q7faxys0h147cr9154pcix1qgj36v41ja9hhbggm4c7vig4s1";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
sha256 = "1znb9d4n9zv3dq10dw17kb1h04gj8iz6gwx1a741fcf4ygp8zpy1";
};

goDeps = ./deps.nix;
modSha256 = "0pjqsb6lxk73prc6jxj07iwd1wyy5gqz24kigb308r3n0c2vcnky";

buildInputs = [ makeWrapper ];

preBuild = ''
find go/src -name vendor | xargs -I % sh -c 'echo Removing %; rm -rf %'
buildFlagsArray+=("-ldflags" "-X main.VERSION=v${version}")
'';

Loading