nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 670 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 nix-update-script, 6}: 7buildGoModule rec { 8 pname = "catbox"; 9 version = "0.2.2"; 10 11 src = fetchFromGitHub { 12 owner = "konimarti"; 13 repo = "catbox"; 14 tag = "v${version}"; 15 hash = "sha256-mLjrHDc8Sn/cHYc8VbrC0YMVVCKyhiYHVzE5kvMergc="; 16 }; 17 18 vendorHash = "sha256-mbxZUCxkPhgIzUUgiQ1P1z6Zgs0UaVnm+erW60AIIH8="; 19 20 passthru.updateScript = nix-update-script { }; 21 22 meta = { 23 description = "Pipe mbox messages into shell commands"; 24 homepage = "https://github.com/konimarti/catbox"; 25 license = lib.licenses.mit; 26 mainProgram = "catbox"; 27 maintainers = with lib.maintainers; [ antonmosich ]; 28 }; 29}