ocamlPackages.slug: init at 1.0.1

This commit is contained in:
Niols 2023-04-17 17:17:27 +01:00
parent f00994e78c
commit 114ea420db
No known key found for this signature in database
GPG Key ID: 0B4EB01A5527EA54
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib, fetchFromGitHub, buildDunePackage
, re, uunf, uuseg
, alcotest
}:
buildDunePackage rec {
pname = "slug";
version = "1.0.1";
duneVersion = "3";
src = fetchFromGitHub {
owner = "thangngoc89";
repo = "ocaml-slug";
rev = version;
sha256 = "sha256-pIk/0asSyibXbwmBSBuLwl2SS9aw6dNDDvwO+1VJGf8=";
};
propagatedBuildInputs = [
re
uunf
uuseg
];
doCheck = true;
checkInputs = [ alcotest ];
meta = {
description = "Url safe slug generator for OCaml";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.niols ];
homepage = "https://github.com/thangngoc89/ocaml-slug";
};
}

View File

@ -1496,6 +1496,8 @@ let
simple-diff = callPackage ../development/ocaml-modules/simple-diff { };
slug = callPackage ../development/ocaml-modules/slug { };
sodium = callPackage ../development/ocaml-modules/sodium { };
sosa = callPackage ../development/ocaml-modules/sosa { };