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

23 lines
537 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildDunePackage }:
2017-10-02 11:18:35 +01:00
2019-12-18 09:20:00 +00:00
buildDunePackage rec {
2019-03-26 10:04:59 +00:00
pname = "stdint";
2019-12-18 09:20:00 +00:00
version = "0.6.0";
minimumOCamlVersion = "4.07";
2017-10-02 11:18:35 +01:00
src = fetchFromGitHub {
owner = "andrenth";
repo = "ocaml-stdint";
rev = version;
2019-12-18 09:20:00 +00:00
sha256 = "19ccxs0vij81vyc9nqc9kbr154ralb9dgc2y2nr71a5xkx6xfn0y";
2017-10-02 11:18:35 +01:00
};
meta = {
description = "Various signed and unsigned integers for OCaml";
2019-12-18 09:20:00 +00:00
homepage = "https://github.com/andrenth/ocaml-stdint";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.gebner ];
2017-10-02 11:18:35 +01:00
};
}