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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
795 B
Nix
Raw Normal View History

{ lib, stdenv, autoreconfHook, fetchFromGitHub, fdk_aac }:
2020-05-16 21:15:40 +02:00
stdenv.mkDerivation rec {
pname = "fdkaac";
2022-07-28 08:25:50 +02:00
version = "1.0.3";
2020-05-16 21:15:40 +02:00
src = fetchFromGitHub {
owner = "nu774";
repo = pname;
2020-09-21 17:07:50 +02:00
rev = "v${version}";
2022-07-28 08:25:50 +02:00
sha256 = "sha256-7a8JlQtMGuMWgU/HePd31/EvtBNc2tBMz8V8NQivuNo=";
2020-05-16 21:15:40 +02:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ fdk_aac ];
doCheck = true;
meta = with lib; {
description = "Command line encoder frontend for libfdk-aac encoder";
2020-05-16 21:15:40 +02:00
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 ];
};
}