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