forked from mirrors/nixpkgs
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ buildGoModule, fetchFromGitHub, stdenv, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "fly";
|
|
version = "7.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "concourse";
|
|
repo = "concourse";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-5+zAIvm4RgXc09HwSNlSjChL4NhMMiGDMtAVlmV/BYE=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-Z6zxSbzn1/u+3Z9PeRl6iO0pVlw/lGtFjAuZpGrRDDY=";
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "fly" ];
|
|
|
|
ldflags = [
|
|
"-X github.com/concourse/concourse.Version=${version}"
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
|
mkdir -p $out/share/{bash-completion/completions,zsh/site-functions}
|
|
$out/bin/fly completion --shell bash > $out/share/bash-completion/completions/fly
|
|
$out/bin/fly completion --shell zsh > $out/share/zsh/site-functions/_fly
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A command line interface to Concourse CI";
|
|
homepage = "https://concourse-ci.org";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ivanbrennan ];
|
|
};
|
|
}
|