Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / path_glob / default.nix
blobed6363bad26138ca3b6cff9489e2b87d802f9a70
1 { lib, buildDunePackage, fetchurl }:
3 buildDunePackage 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   };
12   meta = {
13     homepage = "https://gitlab.com/gasche/path_glob";
14     description = "Checking glob patterns on paths";
15     license = lib.licenses.lgpl2Only;
16   };