lol

ocamlPackages.lilv: init at 0.1.0

+29
+25
pkgs/development/ocaml-modules/lilv/default.nix
··· 1 + { lib, buildDunePackage, fetchFromGitHub, dune-configurator, ctypes, lilv }: 2 + 3 + buildDunePackage rec { 4 + pname = "lilv"; 5 + version = "0.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "savonet"; 9 + repo = "ocaml-lilv"; 10 + rev = "v${version}"; 11 + sha256 = "080ja8c4sxprk5qnldpfzxriag57m9603vny3b4bnwh5xm1id08c"; 12 + }; 13 + 14 + minimalOCamlVersion = "4.03.0"; 15 + 16 + buildInputs = [ dune-configurator ]; 17 + propagatedBuildInputs = [ ctypes lilv ]; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/savonet/ocaml-lilv"; 21 + description = "OCaml bindings for lilv"; 22 + license = licenses.lgpl21Only; 23 + maintainers = with maintainers; [ dandellion ]; 24 + }; 25 + }
+4
pkgs/top-level/ocaml-packages.nix
··· 706 706 707 707 letsencrypt-dns = callPackage ../development/ocaml-modules/letsencrypt/dns.nix { }; 708 708 709 + lilv = callPackage ../development/ocaml-modules/lilv { 710 + inherit (pkgs) lilv; 711 + }; 712 + 709 713 linenoise = callPackage ../development/ocaml-modules/linenoise { }; 710 714 711 715 llvm = callPackage ../development/ocaml-modules/llvm {