mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 05:14:45 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
33 lines
844 B
Nix
33 lines
844 B
Nix
{ lib, stdenv, autoreconfHook, fetchFromGitHub, pkg-config, fdk_aac }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fdkaac";
|
|
version = "1.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nu774";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-nVVeYk7t4+n/BsOKs744stsvgJd+zNnbASk3bAgFTpk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [ fdk_aac ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Command line encoder frontend for libfdk-aac encoder";
|
|
mainProgram = "fdkaac";
|
|
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 ];
|
|
};
|
|
}
|