mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
c406d55e69
Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
20 lines
528 B
Nix
20 lines
528 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vo-aacenc";
|
|
version = "0.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/opencore-amr/fdk-aac/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-5Rp0d6NZ8Y33xPgtGV2rThTnQUy9SM95zBlfxEaFDzY=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "VisualOn AAC encoder library";
|
|
homepage = "https://sourceforge.net/projects/opencore-amr/";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.baloo ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|