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

21 lines
521 B
Nix
Raw Normal View History

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