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