circleci-cli: 0.1.2569 -> 0.1.5879

This commit is contained in:
Mario Rodas 2019-09-18 18:00:00 -05:00
parent 9d09cf0fc3
commit bc172c8780
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -1,22 +1,26 @@
{ stdenv, fetchFromGitHub, buildGoPackage }: { stdenv, fetchFromGitHub, buildGoModule }:
let buildGoModule rec {
owner = "CircleCI-Public";
pname = "circleci-cli"; pname = "circleci-cli";
version = "0.1.2569"; version = "0.1.5879";
in
buildGoPackage {
name = "${pname}-${version}";
inherit version;
src = fetchFromGitHub { src = fetchFromGitHub {
inherit owner; owner = "CircleCI-Public";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0ixiqx8rmia02r44zbhw149p5x9r9cv1fsnlhl8p2x5zd2bdr18x"; sha256 = "1471g56apaw0c5dpa0jrr7hvzh3kbwfr3yr0m4mz2dlf27d481ac";
}; };
goPackagePath = "github.com/${owner}/${pname}"; modSha256 = "0cvmcsl00jfikpkw3f7k5zw65156z5g5l2b6s5803a2i9d613268";
preBuild = ''
substituteInPlace data/data.go \
--replace 'packr.New("circleci-cli-box", "../_data")' 'packr.New("circleci-cli-box", "${placeholder "out"}/share/circleci-cli")'
'';
postInstall = ''
install -Dm644 -t $out/share/circleci-cli _data/data.yml
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
# Box blurb edited from the AUR package circleci-cli # Box blurb edited from the AUR package circleci-cli
@ -25,7 +29,6 @@ buildGoPackage {
run jobs as if they were running on the hosted CirleCI application. run jobs as if they were running on the hosted CirleCI application.
''; '';
maintainers = with maintainers; [ synthetica ]; maintainers = with maintainers; [ synthetica ];
platforms = platforms.unix;
license = licenses.mit; license = licenses.mit;
homepage = https://circleci.com/; homepage = https://circleci.com/;
}; };