f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
23 lines
573 B
Nix
23 lines
573 B
Nix
{ stdenv, fetchurl, ffmpeg, sox }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bs1770gain-${version}";
|
|
version = "0.4.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bs1770gain/${name}.tar.gz";
|
|
sha256 = "0n9skdap1vnl6w52fx0gsrjlk7w3xgdwi62ycyf96h29rx059z6a";
|
|
};
|
|
|
|
buildInputs = [ ffmpeg sox ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A audio/video loudness scanner implementing ITU-R BS.1770";
|
|
license = licenses.gpl2Plus;
|
|
homepage = http://bs1770gain.sourceforge.net/;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|