mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
27 lines
640 B
Nix
27 lines
640 B
Nix
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "gotify-cli";
|
||
|
version = "2.1.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "gotify";
|
||
|
repo = "cli";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "131gs6xzfggnrzq5jgyky23zvcmhx3q3hd17xvqxd02s2i9x1mg4";
|
||
|
};
|
||
|
|
||
|
modSha256 = "1lrsg33zd7m24za2gv407hz02n3lmz9qljfk82whlj44hx7kim1z";
|
||
|
|
||
|
postInstall = ''
|
||
|
mv $out/bin/cli $out/bin/gotify
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
license = licenses.mit;
|
||
|
homepage = https://github.com/gotify/cli;
|
||
|
description = "A command line interface for pushing messages to gotify/server.";
|
||
|
maintainers = with maintainers; [ ma27 ];
|
||
|
};
|
||
|
}
|