ocamlPackages.lilv: init at 0.1.0
This commit is contained in:
parent
c035e81dac
commit
592f58a190
25
pkgs/development/ocaml-modules/lilv/default.nix
Normal file
25
pkgs/development/ocaml-modules/lilv/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, ctypes, lilv }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "lilv";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "savonet";
|
||||||
|
repo = "ocaml-lilv";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "080ja8c4sxprk5qnldpfzxriag57m9603vny3b4bnwh5xm1id08c";
|
||||||
|
};
|
||||||
|
|
||||||
|
minimalOCamlVersion = "4.03.0";
|
||||||
|
|
||||||
|
buildInputs = [ dune-configurator ];
|
||||||
|
propagatedBuildInputs = [ ctypes lilv ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/savonet/ocaml-lilv";
|
||||||
|
description = "OCaml bindings for lilv";
|
||||||
|
license = licenses.lgpl21Only;
|
||||||
|
maintainers = with maintainers; [ dandellion ];
|
||||||
|
};
|
||||||
|
}
|
@ -706,6 +706,10 @@ let
|
|||||||
|
|
||||||
letsencrypt-dns = callPackage ../development/ocaml-modules/letsencrypt/dns.nix { };
|
letsencrypt-dns = callPackage ../development/ocaml-modules/letsencrypt/dns.nix { };
|
||||||
|
|
||||||
|
lilv = callPackage ../development/ocaml-modules/lilv {
|
||||||
|
inherit (pkgs) lilv;
|
||||||
|
};
|
||||||
|
|
||||||
linenoise = callPackage ../development/ocaml-modules/linenoise { };
|
linenoise = callPackage ../development/ocaml-modules/linenoise { };
|
||||||
|
|
||||||
llvm = callPackage ../development/ocaml-modules/llvm {
|
llvm = callPackage ../development/ocaml-modules/llvm {
|
||||||
|
Loading…
Reference in New Issue
Block a user