Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
468 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchurl,
}:
buildDunePackage rec {
pname = "path_glob";
version = "0.2";
useDune2 = true;
src = fetchurl {
url = "https://gasche.gitlab.io/path_glob/releases/path_glob-${version}.tbz";
sha256 = "01ra20bzjiihbgma74axsp70gqmid6x7jmiizg48mdkni0aa42ay";
};
meta = {
homepage = "https://gitlab.com/gasche/path_glob";
description = "Checking glob patterns on paths";
license = lib.licenses.lgpl2Only;
};
}