mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
35 lines
649 B
Nix
35 lines
649 B
Nix
{ 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";
|
|
};
|
|
}
|