ocamlPackages.lo: init at 0.2.0

This commit is contained in:
Daniel Olsen 2021-10-30 03:55:04 +02:00 committed by Vincent Laporte
parent 85665ca9d4
commit 11208c6400
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, liblo }:
buildDunePackage rec {
pname = "lo";
version = "0.2.0";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-lo";
rev = "v${version}";
sha256 = "0mi8h6f6syxjkxz493l5c3l270pvxx33pz0k3v5465wqjsnppar2";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ liblo ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-lo";
description = "Bindings for LO library";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ dandellion ];
};
}

View file

@ -698,6 +698,8 @@ let
libllvm = pkgs.llvmPackages_10.libllvm;
};
lo = callPackage ../development/ocaml-modules/lo { };
logs = callPackage ../development/ocaml-modules/logs { };
lru = callPackage ../development/ocaml-modules/lru { };