Merge branch 'bitmeter-master' of https://github.com/magnetophon/nixpkgs
This commit is contained in:
commit
5c401ea5ee
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -10435,6 +10435,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