Merge pull request #234915 from figsoda/catnip

catnip: init at 1.8.0
This commit is contained in:
Fabian Affolter 2023-05-30 12:38:23 +02:00 committed by GitHub
commit 2a441ffb14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ lib
, buildGoModule
, fetchFromGitHub
, pkg-config
, portaudio
, testers
, catnip
}:
buildGoModule rec {
pname = "catnip";
version = "1.8.0";
src = fetchFromGitHub {
owner = "noriah";
repo = "catnip";
rev = "v${version}";
hash = "sha256-eVEoQrI8NycEV/dPUNFqkzgjOYaGmH1+lLRRkOybXDU=";
};
vendorHash = "sha256-Hj453+5fhbUL6YMeupT5D6ydaEMe+ZQNgEYHtCUtTx4=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
portaudio
];
ldflags = [
"-s"
"-w"
"-X=main.version=${version}"
];
passthru.tests = {
version = testers.testVersion {
package = catnip;
};
};
meta = with lib; {
description = "Terminal audio visualizer for linux/unix/macOS/windows";
homepage = "https://github.com/noriah/catnip";
changelog = "https://github.com/noriah/catnip/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -18042,6 +18042,8 @@ with pkgs;
cadre = callPackage ../development/tools/cadre { };
catnip = callPackage ../tools/audio/catnip { };
cbrowser = callPackage ../development/tools/misc/cbrowser { };
cc-tool = callPackage ../development/embedded/cc-tool { };