nixpkgs/pkgs/development/tools/packer/default.nix
2020-03-12 21:08:43 +01:00

25 lines
682 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "packer";
version = "1.5.4";
goPackagePath = "github.com/hashicorp/packer";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "hashicorp";
repo = "packer";
rev = "v${version}";
sha256 = "06320crk5dldh7w3yi4pkx7hn3s0l8q1h9fqyzf56iw8sx7983g5";
};
meta = with stdenv.lib; {
description = "A tool for creating identical machine images for multiple platforms from a single source configuration";
homepage = https://www.packer.io;
license = licenses.mpl20;
maintainers = with maintainers; [ cstrahan zimbatm ];
platforms = platforms.unix;
};
}