lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #226669 from Niols/slug

ocamlPackages.slug: init at 1.0.1

authored by

Ulrik Strid and committed by
GitHub
f6528b39 41b15f5c

+36
+34
pkgs/development/ocaml-modules/slug/default.nix
··· 1 + { lib, fetchFromGitHub, buildDunePackage 2 + , re, uunf, uuseg 3 + , alcotest 4 + }: 5 + 6 + buildDunePackage rec { 7 + pname = "slug"; 8 + version = "1.0.1"; 9 + 10 + duneVersion = "3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "thangngoc89"; 14 + repo = "ocaml-slug"; 15 + rev = version; 16 + sha256 = "sha256-pIk/0asSyibXbwmBSBuLwl2SS9aw6dNDDvwO+1VJGf8="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + re 21 + uunf 22 + uuseg 23 + ]; 24 + 25 + doCheck = true; 26 + checkInputs = [ alcotest ]; 27 + 28 + meta = { 29 + description = "Url safe slug generator for OCaml"; 30 + license = lib.licenses.mit; 31 + maintainers = [ lib.maintainers.niols ]; 32 + homepage = "https://github.com/thangngoc89/ocaml-slug"; 33 + }; 34 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1502 1502 1503 1503 simple-diff = callPackage ../development/ocaml-modules/simple-diff { }; 1504 1504 1505 + slug = callPackage ../development/ocaml-modules/slug { }; 1506 + 1505 1507 sodium = callPackage ../development/ocaml-modules/sodium { }; 1506 1508 1507 1509 sosa = callPackage ../development/ocaml-modules/sosa { };