nixpkgs/pkgs/development/tools/sem/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
845 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sem";
2023-10-19 10:58:20 +00:00
version = "0.28.4";
src = fetchFromGitHub {
owner = "semaphoreci";
repo = "cli";
rev = "v${version}";
2023-10-19 10:58:20 +00:00
sha256 = "sha256-T7f/yfzNITlU03N059y1B/I1H77Pji34EK+x0Qs6XwQ=";
};
2023-10-19 10:58:20 +00:00
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;
};
}