ocamlPackages.mirage-ptime: 5.1.0 -> 5.2.0 (#455179)

This commit is contained in:
Vincent Laporte
2025-10-27 16:38:47 +00:00
committed by GitHub
2 changed files with 9 additions and 7 deletions
@@ -12,14 +12,16 @@
mirage-crypto-rng,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "http-mirage-client";
version = "0.0.10";
minimalOCamlVersion = "4.08";
__darwinAllowLocalNetworking = true;
src = fetchurl {
url = "https://github.com/roburio/http-mirage-client/releases/download/v${version}/http-mirage-client-${version}.tbz";
url = "https://github.com/robur-coop/http-mirage-client/releases/download/v${finalAttrs.version}/http-mirage-client-${finalAttrs.version}.tbz";
hash = "sha256-AXEIH1TIAayD4LkFv0yGD8OYvcdC/AJnGudGlkjcWLY=";
};
@@ -40,9 +42,9 @@ buildDunePackage rec {
meta = {
description = "HTTP client for MirageOS";
homepage = "https://github.com/roburio/http-mirage-client";
homepage = "https://github.com/robur-coop/http-mirage-client";
changelog = "https://github.com/robur-coop/http-mirage-client/blob/v${finalAttrs.version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}
})
@@ -3,7 +3,7 @@
buildDunePackage,
fetchurl,
ptime,
version ? "5.1.0",
version ? "5.2.0",
}:
buildDunePackage {
@@ -13,7 +13,7 @@ buildDunePackage {
src = fetchurl {
url = "https://github.com/mirage/mirage-ptime/releases/download/v${version}/mirage-ptime-${version}.tbz";
hash = "sha256-6bPbMTZeGolRMMN4nmrc+ZZ3HqjnAWtj4V7L4fOKKfY=";
hash = "sha256-YOWpJrfQKG9khCwPb5lZXtf+fip4N0B1AAn2Y9zRLyg=";
};
propagatedBuildInputs = [ ptime ];