lol

ocamlPackages.ao: init at 0.2.4

authored by

Daniel Olsen and committed by
Vincent Laporte
5e76c696 50750614

+25
+23
pkgs/development/ocaml-modules/ao/default.nix
··· 1 + { lib, buildDunePackage, fetchFromGitHub, dune-configurator, libao }: 2 + 3 + buildDunePackage rec { 4 + pname = "ao"; 5 + version = "0.2.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "savonet"; 9 + repo = "ocaml-ao"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-HhJdb4i9B4gz3emgDCDT4riQuAsY4uP/47biu7EZ+sk="; 12 + }; 13 + 14 + buildInputs = [ dune-configurator ]; 15 + propagatedBuildInputs = [ libao ]; 16 + 17 + meta = with lib; { 18 + homepage = "https://github.com/savonet/ocaml-ao"; 19 + description = "OCaml bindings for libao"; 20 + license = licenses.lgpl21Plus; 21 + maintainers = with maintainers; [ dandellion ]; 22 + }; 23 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 36 36 37 37 ansiterminal = callPackage ../development/ocaml-modules/ansiterminal { }; 38 38 39 + ao = callPackage ../development/ocaml-modules/ao { }; 40 + 39 41 apron = callPackage ../development/ocaml-modules/apron { }; 40 42 41 43 arp = callPackage ../development/ocaml-modules/arp { };