tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
piqi-ocaml: init at 0.7.4
Matthew Maurer
10 years ago
9c0f1eef
8c875e76
+25
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
piqi-ocaml
default.nix
top-level
all-packages.nix
+24
pkgs/development/ocaml-modules/piqi-ocaml/default.nix
···
1
1
+
{stdenv, fetchurl, ocaml, findlib, piqi, ulex, easy-format, xmlm, base64, camlp4}:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
version = "0.7.4";
5
5
+
name = "piqi-ocaml-${version}";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "https://github.com/alavrik/piqi-ocaml/archive/v${version}.tar.gz";
9
9
+
sha256 = "064c74f031l847q6s1vilj77n7h7i84jn8c83yid9nha3dssaf7m";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ocaml findlib piqi base64 camlp4];
13
13
+
14
14
+
createFindlibDestdir = true;
15
15
+
16
16
+
installPhase = "DESTDIR=$out make install";
17
17
+
18
18
+
meta = with stdenv.lib; {
19
19
+
homepage = http://piqi.org;
20
20
+
description = "Universal schema language and a collection of tools built around it. These are the ocaml bindings.";
21
21
+
license = licenses.asl20;
22
22
+
maintainers = [ maintainers.maurer ];
23
23
+
};
24
24
+
}
+1
pkgs/top-level/all-packages.nix
···
4481
4481
ounit = callPackage ../development/ocaml-modules/ounit { };
4482
4482
4483
4483
piqi = callPackage ../development/ocaml-modules/piqi { };
4484
4484
+
piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { };
4484
4485
4485
4486
re2 = callPackage ../development/ocaml-modules/re2 { };
4486
4487