mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
fdkaac: init at 1.0.0
This commit is contained in:
parent
f3352f3240
commit
e5d33f6d34
31
pkgs/applications/audio/fdkaac/default.nix
Normal file
31
pkgs/applications/audio/fdkaac/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -3453,6 +3453,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user