nixpkgs/pkgs/tools/misc/vorbisgain/default.nix

28 lines
740 B
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, libogg, libvorbis }:
stdenv.mkDerivation rec {
name = "vorbisgain-0.37";
src = fetchurl {
url = "http://sjeng.org/ftp/vorbis/${name}.tar.gz";
sha256 = "1v1h6mhnckmvvn7345hzi9abn5z282g4lyyl4nnbqwnrr98v0vfx";
};
hardeningDisable = [ "format" ];
2016-02-08 00:45:24 +00:00
buildInputs = [ unzip libogg libvorbis ];
2016-02-08 00:45:24 +00:00
patchPhase = ''
chmod -v +x configure
configureFlags="--mandir=$out/share/man"
2016-02-08 00:45:24 +00:00
'';
meta = with stdenv.lib; {
2017-11-11 16:36:33 +00:00
homepage = https://sjeng.org/vorbisgain.html;
description = "A utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}