nixpkgs/pkgs/applications/audio/aacgain/default.nix

64 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, fetchpatch }:
stdenv.mkDerivation {
name = "aacgain-1.9.0";
2016-02-08 15:43:12 +00:00
2020-11-17 15:30:31 +00:00
src = fetchFromGitLab {
owner = "mulx";
repo = "aacgain";
rev = "7c29dccd878ade1301710959aeebe87a8f0828f5";
sha256 = "07hl432vsscqg01b6wr99qmsj4gbx0i02x4k565432y6zpfmaxm0";
};
hardeningDisable = [ "format" ];
2016-02-08 15:43:12 +00:00
2018-02-27 17:36:18 +00:00
postPatch = ''
(
cd mp4v2
patch -p0 < ${fetchpatch {
name = "fix_missing_ptr_deref.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/fix_missing_ptr_deref.patch?h=aacgain-cvs&id=e1a19c920f57063e64bab75cb0d8624731f6e3d7";
sha256 = "1cq7r005nvmwdjb25z80grcam7jv6k57jnl2bh349mg3ajmslbq9";
}}
)
'';
configurePhase = ''
2018-02-27 17:36:18 +00:00
runHook preConfigure
cd mp4v2
./configure
cd ../faad2
./configure
cd ..
./configure
2018-02-27 17:36:18 +00:00
runHook postConfigure
'';
buildPhase = ''
2018-02-27 17:36:18 +00:00
runHook preBuild
cd mp4v2
make libmp4v2.la
cd ../faad2
make LDFLAGS=-static
cd ..
2016-02-08 15:43:12 +00:00
make
2018-02-27 17:36:18 +00:00
runHook postBuild
'';
installPhase = ''
2018-02-27 17:36:18 +00:00
install -D aacgain/aacgain "$out/bin/aacgain"
'';
meta = with lib; {
description = "ReplayGain for AAC files";
homepage = "https://aacgain.altosdesign.com";
2018-02-27 17:36:18 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.robbinch ];
};
}