nixpkgs/pkgs/development/tools/deis/default.nix

25 lines
507 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ stdenv, lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "deis-${version}";
version = "1.13.0";
rev = "v${version}";
goPackagePath = "github.com/deis/deis";
subPackages = [ "client" ];
postInstall = ''
if [ -f "$bin/bin/client" ]; then
mv "$bin/bin/client" "$bin/bin/deis"
fi
'';
src = fetchgit {
inherit rev;
url = "https://github.com/deis/deis";
sha256 = "1fblg3gf7dh5hhm4ajq7yl7iy6gw8p5xlh4z8kvfy542m1fzr0dc";
};
2016-04-27 06:45:04 +00:00
goDeps = ./deps.json;
}