mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
32 lines
845 B
Nix
32 lines
845 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "sem";
|
|
version = "0.28.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "semaphoreci";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-T7f/yfzNITlU03N059y1B/I1H77Pji34EK+x0Qs6XwQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-CDjfhnnt4+ml8k/2QPGaSlJFpxDYWNjA5nzLXL2APX4=";
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [ "-X main.version=${version}" "-X main.buildSource=nix" ];
|
|
|
|
postInstall = ''
|
|
install -m755 $out/bin/cli $out/bin/sem
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A cli to operate on semaphore ci (2.0)";
|
|
homepage = "https://github.com/semaphoreci/cli";
|
|
changelog = "https://github.com/semaphoreci/cli/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ liberatys ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|