tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / development / ocaml-modules / integers / default.nix
blob104438eeab50d6e2ced9e33e0b4d67d40c38f9f4
2   lib,
3   fetchFromGitHub,
4   buildDunePackage,
5   stdlib-shims,
6 }:
8 buildDunePackage rec {
9   pname = "integers";
10   version = "0.7.0";
12   src = fetchFromGitHub {
13     owner = "ocamllabs";
14     repo = "ocaml-integers";
15     rev = version;
16     sha256 = "sha256-zuUgP1jOiVT0q6GisGpkqx7nybWbARgnAcU8NYqvCzA=";
17   };
19   propagatedBuildInputs = [ stdlib-shims ];
21   meta = {
22     description = "Various signed and unsigned integer types for OCaml";
23     license = lib.licenses.mit;
24     homepage = "https://github.com/ocamllabs/ocaml-integers";
25     changelog = "https://github.com/ocamllabs/ocaml-integers/raw/${version}/CHANGES.md";
26     maintainers = [ lib.maintainers.vbgl ];
27   };