1 { lib, stdenv, fetchurl, libogg, libvorbis }:
3 stdenv.mkDerivation rec {
8 url = "https://sjeng.org/ftp/vorbis/vorbisgain-${version}.tar.gz";
9 sha256 = "1v1h6mhnckmvvn7345hzi9abn5z282g4lyyl4nnbqwnrr98v0vfx";
12 hardeningDisable = [ "format" ];
14 buildInputs = [ libogg libvorbis ];
18 configureFlags="--mandir=$out/share/man"
22 homepage = "https://sjeng.org/vorbisgain.html";
23 description = "Utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness";
24 license = licenses.gpl2Only;
25 platforms = platforms.unix;
26 maintainers = with maintainers; [ pSub ];
27 mainProgram = "vorbisgain";