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

50 lines
909 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
name = "aacgain-1.9.0";
2016-02-08 15:43:12 +00:00
src = fetchFromGitHub {
owner = "mulx";
repo = "aacgain";
rev = "7c29dccd878ade1301710959aeebe87a8f0828f5";
sha256 = "07hl432vsscqg01b6wr99qmsj4gbx0i02x4k565432y6zpfmaxm0";
};
hardeningDisable = [ "format" ];
2016-02-08 15:43:12 +00:00
configurePhase = ''
cd mp4v2
./configure
cd ../faad2
./configure
cd ..
./configure
'';
buildPhase = ''
cd mp4v2
make libmp4v2.la
cd ../faad2
make LDFLAGS=-static
cd ..
2016-02-08 15:43:12 +00:00
make
'';
installPhase = ''
strip -s aacgain/aacgain
install -vD aacgain/aacgain "$out/bin/aacgain"
'';
meta = {
description = "ReplayGain for AAC files";
homepage = https://github.com/mulx/aacgain;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.robbinch ];
};
}