mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ buildGoModule, fetchFromGitHub, stdenv, lib, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "fly";
|
|
version = "7.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "concourse";
|
|
repo = "concourse";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-A37XTLL6BcltKofriqai8RX+VQ4jcFRHriP4sUZ5g2c=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-aYu5K6pK6Q0Fmagr91i6nc3t55nUjn5vasIO+kUXWrs=";
|
|
|
|
subPackages = [ "fly" ];
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X github.com/concourse/concourse.Version=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
doCheck = false;
|
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
|
installShellCompletion --cmd fly \
|
|
--bash <($out/bin/fly completion --shell bash) \
|
|
--fish <($out/bin/fly completion --shell fish) \
|
|
--zsh <($out/bin/fly completion --shell zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Command line interface to Concourse CI";
|
|
homepage = "https://concourse-ci.org";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ivanbrennan SuperSandro2000 ];
|
|
};
|
|
}
|