nixpkgs/pkgs/by-name/se/sem/package.nix

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

32 lines
843 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sem";
2024-10-09 03:38:18 +00:00
version = "0.30.1";
src = fetchFromGitHub {
owner = "semaphoreci";
repo = "cli";
rev = "v${version}";
2024-10-09 03:38:18 +00:00
sha256 = "sha256-C4n6pmqNdZr4kEz/MZgQjwATpjhelkCA0nDyCR/k0mc=";
};
2023-12-23 08:05:49 +00:00
vendorHash = "sha256-p8+M+pRp12P7tYlFpXjU94JcJOugQpD8rFdowhonh74=";
subPackages = [ "." ];
ldflags = [ "-X main.version=${version}" "-X main.buildSource=nix" ];
postInstall = ''
install -m755 $out/bin/cli $out/bin/sem
'';
meta = with lib; {
description = "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;
};
}