ocamlPackages.path_glob: init at 0.2
This commit is contained in:
parent
cdff996ed3
commit
95341f082c
2 changed files with 19 additions and 0 deletions
17
pkgs/development/ocaml-modules/path_glob/default.nix
Normal file
17
pkgs/development/ocaml-modules/path_glob/default.nix
Normal file
|
@ -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 { };
|
||||
|
||||
path_glob = callPackage ../development/ocaml-modules/path_glob { };
|
||||
|
||||
pbkdf = callPackage ../development/ocaml-modules/pbkdf { };
|
||||
|
||||
pcap-format = callPackage ../development/ocaml-modules/pcap-format { };
|
||||
|
|
Loading…
Reference in a new issue