nixpkgs/pkgs/development/ocaml-modules/integers/default.nix
Vincent Laporte a25381b019 ocamlPackages.ctypes: 0.13.1 → 0.15.1
ocamlPackages.integers: 0.2.2 → 0.3.0
2019-10-29 07:05:18 +00:00

19 lines
491 B
Nix

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