buildpack: init at 0.5.0

wip/yesman
Mario Rodas 5 years ago
parent 1fb4a93c3a
commit d3df05e61d
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
  1. 26
      pkgs/development/tools/buildpack/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,26 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "pack";
version = "0.5.0";
src = fetchFromGitHub {
owner = "buildpack";
repo = pname;
rev = "v${version}";
sha256 = "0yh62h7lz2i07gixccmfyxk607djp1nrs57rzk7nkxnjcj4jj5sr";
};
goPackagePath = "github.com/buildpack/pack";
subPackages = [ "cmd/pack" ];
buildFlagsArray = [ "-ldflags=-s -w -X github.com/buildpack/pack/cmd.Version=${version}" ];
meta = with lib; {
homepage = "https://buildpacks.io/";
description = "Local CLI for building apps using Cloud Native Buildpacks";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}

@ -1249,6 +1249,8 @@ in
asciidoc = asciidoc-full;
};
buildpack = callPackage ../development/tools/buildpack { };
buildtorrent = callPackage ../tools/misc/buildtorrent { };
bustle = haskellPackages.bustle;

Loading…
Cancel
Save