mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
46 lines
817 B
Nix
46 lines
817 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, autoconf
|
|
, automake
|
|
, libtool
|
|
, faad2
|
|
, mp4v2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aacgain";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dgilman";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-9Y23Zh7q3oB4ha17Fpm1Hu2+wtQOA1llj6WDUAO2ARU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
cp -R ${faad2.src}/* 3rdparty/faad2
|
|
cp -R ${mp4v2.src}/* 3rdparty/mp4v2
|
|
chmod -R +w 3rdparty
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
autoconf
|
|
automake
|
|
libtool
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=narrowing";
|
|
|
|
meta = with lib; {
|
|
description = "ReplayGain for AAC files";
|
|
homepage = "https://github.com/dgilman/aacgain";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.robbinch ];
|
|
};
|
|
}
|