forked from mirrors/nixpkgs
ocamlPackages.faad: init at 0.5.1
This commit is contained in:
parent
174c0a086e
commit
866dbd9d42
24
pkgs/development/ocaml-modules/faad/default.nix
Normal file
24
pkgs/development/ocaml-modules/faad/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue