mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
f6f2f38a6e
Currently, we have a 'jack' package with attrname 'jack1d' and a 'jackdbus' package with attrname 'jackaudio'. Make it consistent 'jack1' and 'jack2' in both package name and attrname. This aligns the naming with what can be found on the JACK homepage. Q: what's the difference between jack1 and jack2? A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
21 lines
534 B
Nix
21 lines
534 B
Nix
{ stdenv, fetchurl, jack2, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jackmeter-0.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.aelius.com/njh/jackmeter/${name}.tar.gz";
|
|
sha256 = "1cnvgx3jv0yvxlqy0l9k285zgvazmh5k8m4l7lxckjfm5bn6hm1r";
|
|
};
|
|
|
|
buildInputs = [ jack2 pkgconfig ];
|
|
|
|
meta = {
|
|
description = "Console jack loudness meter";
|
|
homepage = http://www.aelius.com/njh/jackmeter/;
|
|
license = "GPLv2";
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|