bs1770gain: 0.4.7 -> 0.4.12

This commit is contained in:
ndowens 2017-03-05 08:36:55 -06:00 committed by Graham Christensen
parent 918a4e649d
commit 558751b41e
No known key found for this signature in database
GPG Key ID: 06121D366FE9435C

View File

@ -2,21 +2,21 @@
stdenv.mkDerivation rec {
name = "bs1770gain-${version}";
version = "0.4.7";
version = "0.4.12";
src = fetchurl {
url = "mirror://sourceforge/bs1770gain/${name}.tar.gz";
sha256 = "0dnypm7k4axc693g0z73n2mvycbzgc4lnj2am64xjzyg37my4qzz";
sha256 = "0n9skdap1vnl6w52fx0gsrjlk7w3xgdwi62ycyf96h29rx059z6a";
};
buildInputs = [ ffmpeg sox ];
NIX_CFLAGS_COMPILE = "-Wno-error";
meta = {
meta = with stdenv.lib; {
description = "A audio/video loudness scanner implementing ITU-R BS.1770";
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
homepage = "http://bs1770gain.sourceforge.net/";
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
};
}