nixpkgs/pkgs/development/tools/packer/default.nix
2020-01-06 09:56:36 +00:00

25 lines
682 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "packer";
version = "1.5.1";
goPackagePath = "github.com/hashicorp/packer";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "hashicorp";
repo = "packer";
rev = "v${version}";
sha256 = "0cj5nr2wjpw676wwx97pk4vfal4n13hm95bjl6600fj6m3491sh0";
};
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;
};
}