depot/third_party/nixpkgs/pkgs/development/tools/deisctl/default.nix
Default email d6cfb865ad Project import generated by Copybara.
GitOrigin-RevId: 5265d49a36bb5a18c85e6817b338b456acc3b8cc
2020-10-18 20:13:06 -04:00

30 lines
733 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "deis";
version = "1.13.3";
rev = "v${version}";
goPackagePath = "github.com/deis/deis";
subPackages = [ "deisctl" ];
src = fetchFromGitHub {
inherit rev;
owner = "deis";
repo = "deis";
sha256 = "15q44jyjms8fdmly0z4sn4ymf1dx6cmdavgixjixdj2wbjw0yi2p";
};
preBuild = ''
export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace
'';
meta = with stdenv.lib; {
homepage = "https://deis.io";
description = "A command-line utility used to provision and operate a Deis cluster";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [
];
};
}