Unverified Commit 0fde19fc authored by Yifei Sun's avatar Yifei Sun Committed by GitHub
Browse files

ocamlPackages.path_glob: 0.2 → 0.3 (#464452)

parents cfe2c7d5 0b7191af
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -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;
  };
}
})