ocamlPackages.path_glob: 0.2 → 0.3

This commit is contained in:
Vincent Laporte
2025-11-24 04:41:09 +01:00
parent a098bab3a5
commit 0b7191afe9
@@ -4,13 +4,12 @@
fetchurl,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "path_glob";
version = "0.2";
useDune2 = true;
version = "0.3";
src = fetchurl {
url = "https://gasche.gitlab.io/path_glob/releases/path_glob-${version}.tbz";
sha256 = "01ra20bzjiihbgma74axsp70gqmid6x7jmiizg48mdkni0aa42ay";
url = "https://gasche.gitlab.io/path_glob/releases/path_glob-${finalAttrs.version}.tgz";
hash = "sha256-My2uI7cA+gUNH9bk89LiS43R2yyOpPdsVOLlSFHJ0iY=";
};
meta = {
@@ -18,4 +17,4 @@ buildDunePackage rec {
description = "Checking glob patterns on paths";
license = lib.licenses.lgpl2Only;
};
}
})