Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.stdint: init at 0.3.0

+27
+25
pkgs/development/ocaml-modules/stdint/default.nix
··· 1 + { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ocaml${ocaml.version}-stdint-${version}"; 5 + version = "0.3.0"; 6 + src = fetchFromGitHub { 7 + owner = "andrenth"; 8 + repo = "ocaml-stdint"; 9 + rev = version; 10 + sha256 = "18nh23yx4ghgq7mjf4mdyq8kj1fdw5d0abw919s8n4mv21cmpwia"; 11 + }; 12 + 13 + buildInputs = [ ocaml findlib ocamlbuild ]; 14 + configurePhase = "ocaml setup.ml -configure --prefix $out"; 15 + 16 + createFindlibDestdir = true; 17 + 18 + meta = { 19 + description = "Various signed and unsigned integers for OCaml"; 20 + license = stdenv.lib.licenses.mit; 21 + maintainers = [ stdenv.lib.maintainers.gebner ]; 22 + inherit (src.meta) homepage; 23 + inherit (ocaml.meta) platforms; 24 + }; 25 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 625 625 626 626 sawja = callPackage ../development/ocaml-modules/sawja { }; 627 627 628 + stdint = callPackage ../development/ocaml-modules/stdint { }; 629 + 628 630 uucd = callPackage ../development/ocaml-modules/uucd { }; 629 631 uucp = callPackage ../development/ocaml-modules/uucp { }; 630 632 uunf = callPackage ../development/ocaml-modules/uunf { };