Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-02-27 18:16:44 +00:00
committed by GitHub
45 changed files with 550 additions and 223 deletions
@@ -4,6 +4,8 @@ buildDunePackage rec {
pname = "mmap";
version = "1.1.0";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/mmap/releases/download/v${version}/mmap-v${version}.tbz";
sha256 = "0l6waidal2n8mkdn74avbslvc10sf49f5d889n838z03pra5chsc";
@@ -1,9 +1,11 @@
{ lib, buildDunePackage, fetchurl }:
{ lib, buildDunePackage, fetchurl, ocaml }:
buildDunePackage rec {
pname = "result";
version = "1.5";
useDune2 = lib.versionAtLeast ocaml.version "4.08";
src = fetchurl {
url = "https://github.com/janestreet/result/releases/download/${version}/result-${version}.tbz";
sha256 = "0cpfp35fdwnv3p30a06wd0py3805qxmq3jmcynjc3x2qhlimwfkw";