about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/integers/default.nix
blob: bf2d2dd1e8b189bf79810b5eab79156fd138cb32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg }:

stdenv.mkDerivation {
	name = "ocaml${ocaml.version}-integers-0.2.2";

	src = fetchurl {
		url = https://github.com/ocamllabs/ocaml-integers/releases/download/v0.2.2/integers-0.2.2.tbz;
		sha256 = "08b1ljw88ny3l0mdq6xmffjk8anfc77igryva5jz1p6f4f746ywk";
	};

	buildInputs = [ ocaml findlib ocamlbuild topkg ];

	inherit (topkg) buildPhase installPhase;

	meta = {
		description = "Various signed and unsigned integer types for OCaml";
		license = stdenv.lib.licenses.mit;
		homepage = https://github.com/ocamllabs/ocaml-integers;
		maintainers = [ stdenv.lib.maintainers.vbgl ];
		inherit (ocaml.meta) platforms;
	};
}