2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, unzip, libogg, libvorbis }:
|
2011-03-06 17:07:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-01-22 19:15:08 +01:00
|
|
|
name = "vorbisgain-0.37";
|
2011-03-06 17:07:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://sjeng.org/ftp/vorbis/${name}.tar.gz";
|
2015-01-22 19:15:08 +01:00
|
|
|
sha256 = "1v1h6mhnckmvvn7345hzi9abn5z282g4lyyl4nnbqwnrr98v0vfx";
|
2011-03-06 17:07:37 +01:00
|
|
|
};
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-08 01:45:24 +01:00
|
|
|
|
2011-03-06 17:07:37 +01:00
|
|
|
buildInputs = [ unzip libogg libvorbis ];
|
2016-02-08 01:45:24 +01:00
|
|
|
|
2011-03-06 17:07:37 +01:00
|
|
|
patchPhase = ''
|
|
|
|
chmod -v +x configure
|
|
|
|
configureFlags="--mandir=$out/share/man"
|
2016-02-08 01:45:24 +01:00
|
|
|
'';
|
2015-01-22 19:15:08 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://sjeng.org/vorbisgain.html";
|
2015-01-22 19:15:08 +01:00
|
|
|
description = "A utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness";
|
|
|
|
license = licenses.gpl2;
|
2021-01-06 05:20:00 +01:00
|
|
|
platforms = platforms.unix;
|
2015-01-22 19:15:08 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
2011-03-06 17:07:37 +01:00
|
|
|
}
|