Merge pull request #301565 from vbgl/ocaml-stdlib-shims-dune3

ocamlPackages.stdlib-shims: use Dune 3
This commit is contained in:
Weijia Wang 2024-04-09 14:52:11 +02:00 committed by GitHub
commit ca1c287d5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,13 +1,12 @@
{ buildDunePackage, lib, fetchurl, ocaml }: { buildDunePackage, lib, fetchurl, ocaml }:
buildDunePackage (rec { buildDunePackage rec {
pname = "stdlib-shims"; pname = "stdlib-shims";
version = "0.3.0"; version = "0.3.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/ocaml/${pname}/releases/download/${version}/${pname}-${version}.tbz"; url = "https://github.com/ocaml/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "0jnqsv6pqp5b5g7lcjwgd75zqqvcwcl5a32zi03zg1kvj79p5gxs"; sha256 = "0jnqsv6pqp5b5g7lcjwgd75zqqvcwcl5a32zi03zg1kvj79p5gxs";
}; };
minimalOCamlVersion = "4.02";
doCheck = true; doCheck = true;
meta = { meta = {
description = "Shims for forward-compatibility between versions of the OCaml standard library"; description = "Shims for forward-compatibility between versions of the OCaml standard library";
@ -15,6 +14,4 @@ buildDunePackage (rec {
inherit (ocaml.meta) license; inherit (ocaml.meta) license;
maintainers = [ lib.maintainers.vbgl ]; maintainers = [ lib.maintainers.vbgl ];
}; };
} // lib.optionalAttrs (!lib.versionAtLeast ocaml.version "4.08") { }
duneVersion = "1";
})