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

28 lines
592 B
Nix
Raw Normal View History

2016-10-19 09:16:43 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "deis-${version}";
2016-10-19 09:16:43 +00:00
version = "1.13.3";
rev = "v${version}";
2016-10-19 09:16:43 +00:00
goPackagePath = "github.com/deis/deis";
subPackages = [ "client" ];
postInstall = ''
if [ -f "$bin/bin/client" ]; then
mv "$bin/bin/client" "$bin/bin/deis"
fi
'';
2016-06-06 06:56:13 +00:00
src = fetchFromGitHub {
inherit rev;
2016-06-06 06:56:13 +00:00
owner = "deis";
repo = "deis";
2016-10-19 09:16:43 +00:00
sha256 = "15q44jyjms8fdmly0z4sn4ymf1dx6cmdavgixjixdj2wbjw0yi2p";
};
preBuild = ''
export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace
'';
}