mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
Merge pull request #284789 from vdemeester/add-gosmee
This commit is contained in:
commit
2098d845d7
@ -3610,6 +3610,12 @@
|
|||||||
githubId = 1118859;
|
githubId = 1118859;
|
||||||
name = "Scott Worley";
|
name = "Scott Worley";
|
||||||
};
|
};
|
||||||
|
chmouel = {
|
||||||
|
email = "chmouel@chmouel.com";
|
||||||
|
github = "chmouel";
|
||||||
|
githubId = 98980;
|
||||||
|
name = "Chmouel Boudjnah";
|
||||||
|
};
|
||||||
choochootrain = {
|
choochootrain = {
|
||||||
email = "hurshal@imap.cc";
|
email = "hurshal@imap.cc";
|
||||||
github = "choochootrain";
|
github = "choochootrain";
|
||||||
|
38
pkgs/by-name/go/gosmee/package.nix
Normal file
38
pkgs/by-name/go/gosmee/package.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, installShellFiles
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "gosmee";
|
||||||
|
version = "0.21.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "chmouel";
|
||||||
|
repo = "gosmee";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-VNBz6roula/YlsYMM1kjQT3TLuQ86/MESzNNkEf/92M=";
|
||||||
|
};
|
||||||
|
vendorHash = null;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
printf ${version} > gosmee/templates/version
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion --cmd gosmee \
|
||||||
|
--bash <($out/bin/gosmee completion bash) \
|
||||||
|
--fish <($out/bin/gosmee completion fish) \
|
||||||
|
--zsh <($out/bin/gosmee completion zsh)
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Command line server and client for webhooks deliveries (and https://smee.io)";
|
||||||
|
homepage = "https://github.com/chmouel/gosmee";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = with lib.maintainers; [ vdemeester chmouel ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user