lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 20 lines 557 B view raw
1{ stdenv, fetchurl, libjack2, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "jackmeter-0.4"; 5 6 src = fetchurl { 7 url = "http://www.aelius.com/njh/jackmeter/${name}.tar.gz"; 8 sha256 = "1cnvgx3jv0yvxlqy0l9k285zgvazmh5k8m4l7lxckjfm5bn6hm1r"; 9 }; 10 11 buildInputs = [ libjack2 pkgconfig ]; 12 13 meta = { 14 description = "Console jack loudness meter"; 15 homepage = http://www.aelius.com/njh/jackmeter/; 16 license = stdenv.lib.licenses.gpl2; 17 maintainers = [ stdenv.lib.maintainers.marcweber ]; 18 platforms = stdenv.lib.platforms.linux; 19 }; 20}