ocamlPackages.path_glob: init at 0.2
This commit is contained in:
parent
cdff996ed3
commit
95341f082c
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -932,6 +932,8 @@ let
|
||||||
|
|
||||||
parse-argv = callPackage ../development/ocaml-modules/parse-argv { };
|
parse-argv = callPackage ../development/ocaml-modules/parse-argv { };
|
||||||
|
|
||||||
|
path_glob = callPackage ../development/ocaml-modules/path_glob { };
|
||||||
|
|
||||||
pbkdf = callPackage ../development/ocaml-modules/pbkdf { };
|
pbkdf = callPackage ../development/ocaml-modules/pbkdf { };
|
||||||
|
|
||||||
pcap-format = callPackage ../development/ocaml-modules/pcap-format { };
|
pcap-format = callPackage ../development/ocaml-modules/pcap-format { };
|
||||||
|
|
Loading…
Reference in New Issue