ocamlPackages.ao: init at 0.2.4
This commit is contained in:
parent
5075061493
commit
5e76c6961d
2 changed files with 25 additions and 0 deletions
23
pkgs/development/ocaml-modules/ao/default.nix
Normal file
23
pkgs/development/ocaml-modules/ao/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue