ocamlPackages.faad: init at 0.5.1

This commit is contained in:
Daniel Olsen 2021-10-09 15:30:13 +02:00
parent 174c0a086e
commit 866dbd9d42
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, faad2, pkg-config }:
buildDunePackage rec {
pname = "faad";
version = "0.5.1";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-faad";
rev = "v${version}";
sha256 = "sha256-3ayKZhgJAgsoOqn0InSrM5f3TImRHOQMtWETICo4t3o=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ faad2 ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-faad";
description = "Bindings for the faad library which provides functions for decoding AAC audio files";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dandellion ];
};
}

View file

@ -399,6 +399,8 @@ let
ezxmlm = callPackage ../development/ocaml-modules/ezxmlm { };
faad = callPackage ../development/ocaml-modules/faad { };
facile = callPackage ../development/ocaml-modules/facile { };
faraday = callPackage ../development/ocaml-modules/faraday { };