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

19 lines
491 B
Nix
Raw Normal View History

{ lib, fetchzip, buildDunePackage }:
2017-07-11 23:11:53 +02:00
buildDunePackage rec {
pname = "integers";
version = "0.3.0";
2017-07-11 23:11:53 +02:00
src = fetchzip {
url = "https://github.com/ocamllabs/ocaml-integers/archive/${version}.tar.gz";
sha256 = "1yhif5zh4srh63mhimfx3p5ljpb3lixjdd3i9pjnbj2qgpzlqj8p";
2017-07-11 23:11:53 +02:00
};
meta = {
description = "Various signed and unsigned integer types for OCaml";
license = lib.licenses.mit;
2017-07-11 23:11:53 +02:00
homepage = https://github.com/ocamllabs/ocaml-integers;
maintainers = [ lib.maintainers.vbgl ];
2017-07-11 23:11:53 +02:00
};
}