nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5}:
6
7buildDunePackage (finalAttrs: {
8 pname = "path_glob";
9 version = "0.3";
10 src = fetchurl {
11 url = "https://gasche.gitlab.io/path_glob/releases/path_glob-${finalAttrs.version}.tgz";
12 hash = "sha256-My2uI7cA+gUNH9bk89LiS43R2yyOpPdsVOLlSFHJ0iY=";
13 };
14
15 meta = {
16 homepage = "https://gitlab.com/gasche/path_glob";
17 description = "Checking glob patterns on paths";
18 license = lib.licenses.lgpl2Only;
19 };
20})