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

32 lines
797 B
Nix
Raw Normal View History

2020-05-16 19:15:40 +00:00
{ stdenv, autoreconfHook, fetchFromGitHub, fdk_aac }:
stdenv.mkDerivation rec {
pname = "fdkaac";
2020-09-21 15:07:50 +00:00
version = "1.0.1";
2020-05-16 19:15:40 +00:00
src = fetchFromGitHub {
owner = "nu774";
repo = pname;
2020-09-21 15:07:50 +00:00
rev = "v${version}";
sha256 = "02mzx4bird2q5chzpavfc9pg259hwfvq6px85xarm59vmj9nryb6";
2020-05-16 19:15:40 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ fdk_aac ];
doCheck = true;
meta = with stdenv.lib; {
description = "Command line encoder frontend for libfdk-aac encder";
longDescription = ''
fdkaac reads linear PCM audio in either WAV, raw PCM, or CAF format,
and encodes it into either M4A / AAC file.
'';
homepage = "https://github.com/nu774/fdkaac";
license = licenses.zlib;
platforms = platforms.all;
maintainers = [ maintainers.lunik1 ];
};
}