Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, fetchurl }:
2
3buildDunePackage rec {
4 pname = "path_glob";
5 version = "0.2";
6 useDune2 = true;
7 src = fetchurl {
8 url = "https://gasche.gitlab.io/path_glob/releases/path_glob-${version}.tbz";
9 sha256 = "01ra20bzjiihbgma74axsp70gqmid6x7jmiizg48mdkni0aa42ay";
10 };
11
12 meta = {
13 homepage = "https://gitlab.com/gasche/path_glob";
14 description = "Checking glob patterns on paths";
15 license = lib.licenses.lgpl2Only;
16 };
17}