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