Merge pull request #87952 from lunik1/add-fdkaac

fdkaac: init at 1.0.0
This commit is contained in:
Elis Hirwing 2020-06-04 13:00:18 +02:00 committed by GitHub
commit 88f61c3a36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 43 additions and 0 deletions

View file

@ -4649,6 +4649,16 @@
githubId = 26020062;
name = "lumi";
};
lunik1 = {
email = "ch.nixpkgs@themaw.xyz";
github = "lunik1";
githubId = 13547699;
name = "Corin Hoad";
keys = [{
longkeyid = "rsa2048/0x6A37DF9483188492";
fingerprint = "BA3A 5886 AE6D 526E 20B4 57D6 6A37 DF94 8318 8492";
}];
};
luz = {
email = "luz666@daum.net";
github = "Luz";

View file

@ -0,0 +1,31 @@
{ stdenv, autoreconfHook, fetchFromGitHub, fdk_aac }:
stdenv.mkDerivation rec {
pname = "fdkaac";
version = "1.0.0";
src = fetchFromGitHub {
owner = "nu774";
repo = pname;
rev = version;
sha256 = "16iwqmwagnb929byz8kj79pmmr0anbyv26drbavhppmxhk7rrpgh";
};
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 ];
};
}

View file

@ -3495,6 +3495,8 @@ in
fdk_aac = callPackage ../development/libraries/fdk-aac { };
fdk-aac-encoder = callPackage ../applications/audio/fdkaac { };
feedgnuplot = callPackage ../tools/graphics/feedgnuplot { };
fbv = callPackage ../tools/graphics/fbv { };