1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

ocamlPackages.stdlib-shims: init at 0.1.0

This commit is contained in:
Vincent Laporte 2019-02-23 15:11:26 +00:00 committed by Vincent Laporte
parent bf483b6e4e
commit 93ce3df6b5
2 changed files with 20 additions and 0 deletions

View 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 ];
};
}

View file

@ -709,6 +709,8 @@ let
ssl = callPackage ../development/ocaml-modules/ssl { };
stdlib-shims = callPackage ../development/ocaml-modules/stdlib-shims { };
stog = callPackage ../applications/misc/stog { };
stringext = callPackage ../development/ocaml-modules/stringext { };