tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.lilv: init at 0.1.0
Daniel Olsen
3 years ago
592f58a1
c035e81d
+29
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
lilv
default.nix
top-level
ocaml-packages.nix
+25
pkgs/development/ocaml-modules/lilv/default.nix
reviewed
···
1
1
+
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, ctypes, lilv }:
2
2
+
3
3
+
buildDunePackage rec {
4
4
+
pname = "lilv";
5
5
+
version = "0.1.0";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "savonet";
9
9
+
repo = "ocaml-lilv";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "080ja8c4sxprk5qnldpfzxriag57m9603vny3b4bnwh5xm1id08c";
12
12
+
};
13
13
+
14
14
+
minimalOCamlVersion = "4.03.0";
15
15
+
16
16
+
buildInputs = [ dune-configurator ];
17
17
+
propagatedBuildInputs = [ ctypes lilv ];
18
18
+
19
19
+
meta = with lib; {
20
20
+
homepage = "https://github.com/savonet/ocaml-lilv";
21
21
+
description = "OCaml bindings for lilv";
22
22
+
license = licenses.lgpl21Only;
23
23
+
maintainers = with maintainers; [ dandellion ];
24
24
+
};
25
25
+
}
+4
pkgs/top-level/ocaml-packages.nix
reviewed
···
706
706
707
707
letsencrypt-dns = callPackage ../development/ocaml-modules/letsencrypt/dns.nix { };
708
708
709
709
+
lilv = callPackage ../development/ocaml-modules/lilv {
710
710
+
inherit (pkgs) lilv;
711
711
+
};
712
712
+
709
713
linenoise = callPackage ../development/ocaml-modules/linenoise { };
710
714
711
715
llvm = callPackage ../development/ocaml-modules/llvm {