mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
add bitmeter: also known as jack bitscope. Useful to detect denormals.
This commit is contained in:
parent
d7de6dad5f
commit
3ddaf0c32a
21
pkgs/applications/audio/bitmeter/default.nix
Normal file
21
pkgs/applications/audio/bitmeter/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, jack2, gtk2, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "bitmeter-${version}";
|
||||||
|
version = "1.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://devel.tlrmx.org/audio/source/${name}.tar.gz";
|
||||||
|
sha256 = "09ck2gxqky701dc1p0ip61rrn16v0pdc7ih2hc2sd63zcw53g2a7";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ jack2 gtk2 pkgconfig ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://devel.tlrmx.org/audio/bitmeter/;
|
||||||
|
description = "Also known as jack bitscope. Useful to detect denormals.";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -10436,6 +10436,8 @@ let
|
|||||||
|
|
||||||
bitlbee = callPackage ../applications/networking/instant-messengers/bitlbee { };
|
bitlbee = callPackage ../applications/networking/instant-messengers/bitlbee { };
|
||||||
|
|
||||||
|
bitmeter = callPackage ../applications/audio/bitmeter { };
|
||||||
|
|
||||||
blender = callPackage ../applications/misc/blender {
|
blender = callPackage ../applications/misc/blender {
|
||||||
python = python34;
|
python = python34;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user