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

37 lines
839 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "deis";
2018-01-20 15:50:32 +00:00
version = "1.13.4";
rev = "v${version}";
2016-10-19 09:16:43 +00:00
goPackagePath = "github.com/deis/deis";
subPackages = [ "client" ];
postInstall = ''
if [ -f "$out/bin/client" ]; then
mv "$out/bin/client" "$out/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";
2018-01-20 15:50:32 +00:00
sha256 = "0hndzvlgpfm83c4i1c88byv8j9clagswa79nny8wrw33dx90dym1";
};
preBuild = ''
export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace
'';
2016-10-19 09:25:08 +00:00
meta = with lib; {
homepage = "https://deis.io";
description = "A command line utility used to interact with the Deis open source PaaS";
2016-10-19 09:25:08 +00:00
license = licenses.asl20;
platforms = platforms.unix;
2016-10-19 09:25:08 +00:00
maintainers = with maintainers; [
];
};
}