ebumeter: init at 0.4.2

+35
+33
pkgs/applications/audio/ebumeter/default.nix
···
··· 1 + { lib, stdenv, fetchurl 2 + , libX11, libXft, libclthreads, libclxclient, libjack2, libpng, libsndfile, zita-resampler 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "ebumeter"; 7 + version = "0.4.2"; 8 + 9 + src = fetchurl { 10 + url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2"; 11 + sha256 = "1wm9j1phmpicrp7jdsvdbc3mghdd92l61yl9qbps0brq2ljjyd5s"; 12 + }; 13 + 14 + buildInputs = [ 15 + libX11 libXft libclthreads libclxclient libjack2 libpng libsndfile zita-resampler 16 + ]; 17 + 18 + preConfigure = '' 19 + cd source 20 + ''; 21 + 22 + makeFlags = [ "PREFIX=$(out)" ]; 23 + 24 + enableParallelBuilding = true; 25 + 26 + meta = with lib; { 27 + description = "Level metering according to the EBU R-128 recommendation"; 28 + homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html"; 29 + license = licenses.gpl2Plus; 30 + maintainers = with maintainers; [ orivej ]; 31 + platforms = platforms.linux; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 21848 21849 eaglemode = callPackage ../applications/misc/eaglemode { }; 21850 21851 echoip = callPackage ../servers/echoip { }; 21852 21853 eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse {
··· 21848 21849 eaglemode = callPackage ../applications/misc/eaglemode { }; 21850 21851 + ebumeter = callPackage ../applications/audio/ebumeter { }; 21852 + 21853 echoip = callPackage ../servers/echoip { }; 21854 21855 eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse {