Skip to content

Commit

Permalink
packer: add missing go dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliButz authored and globin committed Aug 3, 2017
1 parent caaa79f commit aa8cbed
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/tools/packer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ buildGoPackage rec {
sha256 = "1bd0rv93pxlv58c0x1d4dsjq4pg5qwrm2p7qw83pca7izlncgvfr";
};

goDeps = ./deps.nix;

meta = with stdenv.lib; {
description = "A tool for creating identical machine images for multiple platforms from a single source configuration";
homepage = http://www.packer.io;
Expand Down
11 changes: 11 additions & 0 deletions pkgs/development/tools/packer/deps.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[
{
goPackagePath = "github.com/hashicorp/packer";
fetch = {
type = "git";
url = "https://github.com/hashicorp/packer";
rev = "07decf99adc272a386e3a013846248810d9aa690";
sha256 = "17rrzrlr48spadb9fymn1a0blqggs2mfmqbwfxs0pnw66mhd0fzz";
};
}
]

0 comments on commit aa8cbed

Please sign in to comment.