catnip: init at 1.8.0

https://github.com/noriah/catnip
This commit is contained in:
figsoda 2023-05-29 22:56:58 -04:00
parent f97bd7fa1f
commit 6519bda964
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

@ -18040,6 +18040,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 { };