summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/path_glob/default.nix
blob: ed6363bad26138ca3b6cff9489e2b87d802f9a70 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                 
{ 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;
  };
}