ocamlPackages.stdlib-shims: init at 0.1.0
This commit is contained in:
parent
bf483b6e4e
commit
93ce3df6b5
18
pkgs/development/ocaml-modules/stdlib-shims/default.nix
Normal file
18
pkgs/development/ocaml-modules/stdlib-shims/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ buildDunePackage, lib, fetchurl, ocaml }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "stdlib-shims";
|
||||||
|
version = "0.1.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/ocaml/${pname}/releases/download/${version}/${pname}-${version}.tbz";
|
||||||
|
sha256 = "1jv6yb47f66239m7hsz7zzw3i48mjpbvfgpszws48apqx63wjwsk";
|
||||||
|
};
|
||||||
|
minimumOCamlVersion = "4.02";
|
||||||
|
doCheck = true;
|
||||||
|
meta = {
|
||||||
|
description = "Shims for forward-compatibility between versions of the OCaml standard library";
|
||||||
|
homepage = "https://github.com/ocaml/stdlib-shims";
|
||||||
|
inherit (ocaml.meta) license;
|
||||||
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
|
};
|
||||||
|
}
|
@ -709,6 +709,8 @@ let
|
|||||||
|
|
||||||
ssl = callPackage ../development/ocaml-modules/ssl { };
|
ssl = callPackage ../development/ocaml-modules/ssl { };
|
||||||
|
|
||||||
|
stdlib-shims = callPackage ../development/ocaml-modules/stdlib-shims { };
|
||||||
|
|
||||||
stog = callPackage ../applications/misc/stog { };
|
stog = callPackage ../applications/misc/stog { };
|
||||||
|
|
||||||
stringext = callPackage ../development/ocaml-modules/stringext { };
|
stringext = callPackage ../development/ocaml-modules/stringext { };
|
||||||
|
Loading…
Reference in New Issue
Block a user