forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / stdlib-shims / default.nix
blob45c8bb2e4a1a2bc598000178fff6cbd57ccc63ae
1 { buildDunePackage, lib, fetchurl, ocaml }:
3 buildDunePackage rec {
4   pname = "stdlib-shims";
5   version = "0.3.0";
6   src = fetchurl {
7     url = "https://github.com/ocaml/${pname}/releases/download/${version}/${pname}-${version}.tbz";
8     sha256 = "0jnqsv6pqp5b5g7lcjwgd75zqqvcwcl5a32zi03zg1kvj79p5gxs";
9   };
10   doCheck = true;
11   meta = {
12     description = "Shims for forward-compatibility between versions of the OCaml standard library";
13     homepage = "https://github.com/ocaml/stdlib-shims";
14     inherit (ocaml.meta) license;
15     maintainers = [ lib.maintainers.vbgl ];
16   };