Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
770 B
Nix
38 lines
770 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotify-cli";
|
|
version = "2.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gotify";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GwPIGWEpj5GjGV9bz3LctZctHQe+Vywoc1piNb9vAAw=";
|
|
};
|
|
|
|
vendorHash = "sha256-+G0LWlPiDcYmEou4gpoIU/OAjzQ3VSHftM1ViG9lhYM=";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cli $out/bin/gotify
|
|
'';
|
|
|
|
ldflags = [
|
|
"-X main.Version=${version}"
|
|
"-X main.Commit=${version}"
|
|
"-X main.BuildDate=1970-01-01"
|
|
];
|
|
|
|
meta = with lib; {
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/gotify/cli";
|
|
description = "Command line interface for pushing messages to gotify/server";
|
|
maintainers = [ ];
|
|
mainProgram = "gotify";
|
|
};
|
|
}
|