aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/integers/default.nix
blob: a949b339c729a65325f404c9f5ebfccdae7f2439 (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.3.0";

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

	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 ];
	};
}