summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/stdint/default.nix
blob: bffef61956e29b6c3afc6fbec5796743cade17db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchFromGitHub, buildDunePackage }:

buildDunePackage rec {
  pname = "stdint";
  version = "0.6.0";

  minimumOCamlVersion = "4.07";

  src = fetchFromGitHub {
    owner = "andrenth";
    repo = "ocaml-stdint";
    rev = version;
    sha256 = "19ccxs0vij81vyc9nqc9kbr154ralb9dgc2y2nr71a5xkx6xfn0y";
  };

  meta = {
    description = "Various signed and unsigned integers for OCaml";
    homepage = "https://github.com/andrenth/ocaml-stdint";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.gebner ];
  };
}