mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
ocamlPackages.integers: 0.5.1 → 0.7.0
This commit is contained in:
parent
5adec5a79d
commit
c9fe0f83fa
|
@ -1,18 +1,20 @@
|
|||
{ lib, fetchFromGitHub, buildDunePackage, ocaml }:
|
||||
{ lib, fetchFromGitHub, buildDunePackage
|
||||
, stdlib-shims
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "integers";
|
||||
version = "0.5.1";
|
||||
|
||||
useDune2 = lib.versionAtLeast ocaml.version "4.08";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ocamllabs";
|
||||
repo = "ocaml-integers";
|
||||
rev = version;
|
||||
sha256 = "0by5pc851fk7ccxqy1w2qc5jwn9z8whyqhs5gxlm5986vr9msnyi";
|
||||
sha256 = "sha256-zuUgP1jOiVT0q6GisGpkqx7nybWbARgnAcU8NYqvCzA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ stdlib-shims ];
|
||||
|
||||
meta = {
|
||||
description = "Various signed and unsigned integer types for OCaml";
|
||||
license = lib.licenses.mit;
|
||||
|
|
Loading…
Reference in a new issue