1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/continuous-integration/fly/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2020-03-21 09:59:00 +00:00
{ buildGoModule, fetchFromGitHub, stdenv, writeText, Security }:
buildGoModule rec {
pname = "fly";
2020-03-14 17:32:06 +00:00
version = "5.8.0";
src = fetchFromGitHub {
owner = "concourse";
repo = "concourse";
rev = "v${version}";
2020-03-14 17:32:06 +00:00
sha256 = "0ji3jya4b2b4l6dlvydh3k2jfh6kkhii23d6rmi49ypydhn1qmgj";
};
2020-03-14 17:32:06 +00:00
modSha256 = "14wwspp8x6i4ry23bz8b08mfyzrwc9m7clrylxzr8j67yhg5kw6v";
subPackages = [ "fly" ];
buildFlagsArray = ''
-ldflags=
-X github.com/concourse/concourse.Version=${version}
'';
2020-03-21 09:59:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
# The fly.bash file included with this derivation can be replaced by a
# call to `fly completion bash` once the `completion` subcommand has
# made it into a release. Similarly, `fly completion zsh` will provide
# zsh completions. https://github.com/concourse/concourse/pull/4012
postInstall = ''
install -D -m 444 ${./fly.bash} $out/share/bash-completion/completions/fly
'';
2020-03-21 09:59:00 +00:00
meta = with stdenv.lib; {
description = "A command line interface to Concourse CI";
2020-03-14 17:32:06 +00:00
homepage = "https://concourse-ci.org";
license = licenses.asl20;
maintainers = with maintainers; [ ivanbrennan ];
};
}