nixpkgs/pkgs/development/ocaml-modules/integers/default.nix

19 lines
493 B
Nix
Raw Normal View History

{ lib, fetchzip, buildDunePackage }:
2017-07-11 14:11:53 -07:00
buildDunePackage rec {
pname = "integers";
2020-11-28 13:34:43 -08:00
version = "0.4.0";
2017-07-11 14:11:53 -07:00
src = fetchzip {
url = "https://github.com/ocamllabs/ocaml-integers/archive/${version}.tar.gz";
2020-11-28 13:34:43 -08:00
sha256 = "0yp3ab0ph7mp5741g7333x4nx8djjvxzpnv3zvsndyzcycspn9dd";
2017-07-11 14:11:53 -07:00
};
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 ];
2017-07-11 14:11:53 -07:00
};
}