mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
ocamlPackages.integers: 0.4.0 -> 0.5.1
https://github.com/ocamllabs/ocaml-integers/raw/0.5.1/CHANGES.md
This commit is contained in:
parent
d2a08fef69
commit
4a8fec5e6f
@ -1,20 +1,23 @@
|
|||||||
{ lib, fetchzip, buildDunePackage, ocaml }:
|
{ lib, fetchFromGitHub, buildDunePackage, ocaml }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "integers";
|
pname = "integers";
|
||||||
version = "0.4.0";
|
version = "0.5.1";
|
||||||
|
|
||||||
useDune2 = lib.versionAtLeast ocaml.version "4.08";
|
useDune2 = lib.versionAtLeast ocaml.version "4.08";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/ocamllabs/ocaml-integers/archive/${version}.tar.gz";
|
owner = "ocamllabs";
|
||||||
sha256 = "0yp3ab0ph7mp5741g7333x4nx8djjvxzpnv3zvsndyzcycspn9dd";
|
repo = "ocaml-integers";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0by5pc851fk7ccxqy1w2qc5jwn9z8whyqhs5gxlm5986vr9msnyi";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Various signed and unsigned integer types for OCaml";
|
description = "Various signed and unsigned integer types for OCaml";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
homepage = "https://github.com/ocamllabs/ocaml-integers";
|
homepage = "https://github.com/ocamllabs/ocaml-integers";
|
||||||
|
changelog = "https://github.com/ocamllabs/ocaml-integers/raw/${version}/CHANGES.md";
|
||||||
maintainers = [ lib.maintainers.vbgl ];
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user