mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
catbox: init at 0.2.2
This commit is contained in:
parent
1c66d3f27c
commit
45563684e3
1 changed files with 29 additions and 0 deletions
29
pkgs/by-name/ca/catbox/package.nix
Normal file
29
pkgs/by-name/ca/catbox/package.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "catbox";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "konimarti";
|
||||
repo = "catbox";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-mLjrHDc8Sn/cHYc8VbrC0YMVVCKyhiYHVzE5kvMergc=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-mbxZUCxkPhgIzUUgiQ1P1z6Zgs0UaVnm+erW60AIIH8=";
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Pipe mbox messages into shell commands";
|
||||
homepage = "https://github.com/konimarti/catbox";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "catbox";
|
||||
maintainers = with lib.maintainers; [ antonmosich ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue