depot/third_party/nixpkgs/pkgs/tools/misc/vorbisgain/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
791 B
Nix

{ lib, stdenv, fetchurl, libogg, libvorbis }:
stdenv.mkDerivation rec {
pname = "vorbisgain";
version = "0.37";
src = fetchurl {
url = "https://sjeng.org/ftp/vorbis/vorbisgain-${version}.tar.gz";
sha256 = "1v1h6mhnckmvvn7345hzi9abn5z282g4lyyl4nnbqwnrr98v0vfx";
};
hardeningDisable = [ "format" ];
buildInputs = [ libogg libvorbis ];
patchPhase = ''
chmod -v +x configure
configureFlags="--mandir=$out/share/man"
'';
meta = with lib; {
homepage = "https://sjeng.org/vorbisgain.html";
description = "Utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness";
license = licenses.gpl2Only;
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
mainProgram = "vorbisgain";
};
}