ocamlPackages.ao: init at 0.2.4

This commit is contained in:
Daniel Olsen 2021-10-08 01:47:01 +02:00 committed by Vincent Laporte
parent 5075061493
commit 5e76c6961d
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, libao }:
buildDunePackage rec {
pname = "ao";
version = "0.2.4";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-ao";
rev = "v${version}";
sha256 = "sha256-HhJdb4i9B4gz3emgDCDT4riQuAsY4uP/47biu7EZ+sk=";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ libao ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-ao";
description = "OCaml bindings for libao";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ dandellion ];
};
}

View File

@ -36,6 +36,8 @@ let
ansiterminal = callPackage ../development/ocaml-modules/ansiterminal { };
ao = callPackage ../development/ocaml-modules/ao { };
apron = callPackage ../development/ocaml-modules/apron { };
arp = callPackage ../development/ocaml-modules/arp { };