Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 lib, 4 fetchurl, 5 ocaml, 6}: 7 8buildDunePackage 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 }; 22}