Skip to content

Commit

Permalink
ocamlPackages.path_glob: init at 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Apr 19, 2021
1 parent cdff996 commit 95341f0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pkgs/development/ocaml-modules/path_glob/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 95341f0

Please sign in to comment.