mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
parent
f97bd7fa1f
commit
6519bda964
50
pkgs/tools/audio/catnip/default.nix
Normal file
50
pkgs/tools/audio/catnip/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user