nixpkgs-suyu/pkgs/applications/audio/bs1770gain/default.nix

23 lines
576 B
Nix
Raw Normal View History

2020-07-03 13:44:50 +02:00
{ stdenv, fetchurl, ffmpeg, sox }:
stdenv.mkDerivation rec {
pname = "bs1770gain";
version = "0.5.2";
src = fetchurl {
url = "mirror://sourceforge/bs1770gain/${pname}-${version}.tar.gz";
sha256 = "1p6yz5q7czyf9ard65sp4kawdlkg40cfscr3b24znymmhs3p7rbk";
};
2020-07-03 13:44:50 +02:00
buildInputs = [ ffmpeg sox ];
NIX_CFLAGS_COMPILE = "-Wno-error";
2017-03-05 15:36:55 +01:00
meta = with stdenv.lib; {
description = "A audio/video loudness scanner implementing ITU-R BS.1770";
2017-03-05 15:36:55 +01:00
license = licenses.gpl2Plus;
homepage = "http://bs1770gain.sourceforge.net/";
2017-03-05 15:36:55 +01:00
platforms = platforms.all;
};
}