aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/integers/default.nix
blob: ca14c3ca87395d56de3ea2f81c9cba30af9b23b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, fetchzip, buildDunePackage }:

buildDunePackage rec {
	pname = "integers";
	version = "0.4.0";

	src = fetchzip {
		url = "https://github.com/ocamllabs/ocaml-integers/archive/${version}.tar.gz";
		sha256 = "0yp3ab0ph7mp5741g7333x4nx8djjvxzpnv3zvsndyzcycspn9dd";
	};

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