lol

ocamlPackages.routes: init at 0.9.1

authored by

Ulrik Strid and committed by
Vincent Laporte
483be376 bd29bbb9

+23
+21
pkgs/development/ocaml-modules/routes/default.nix
··· 1 + { lib, fetchurl, buildDunePackage }: 2 + 3 + buildDunePackage rec { 4 + pname = "routes"; 5 + version = "0.9.1"; 6 + 7 + useDune2 = true; 8 + minimalOCamlVersion = "4.05"; 9 + 10 + src = fetchurl { 11 + url = "https://github.com/anuragsoni/routes/releases/download/${version}/routes-${version}.tbz"; 12 + sha256 = "0h2c1p5w6237c1lmsl5c8q2dj5dq20gf2cmb12nbmlfn12sfmcrl"; 13 + }; 14 + 15 + meta = with lib; { 16 + description = "Typed routing for OCaml applications"; 17 + license = licenses.bsd3; 18 + homepage = "https://anuragsoni.github.io/routes"; 19 + maintainers = with maintainers; [ ulrikstrid anmonteiro ]; 20 + }; 21 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1155 1155 1156 1156 rope = callPackage ../development/ocaml-modules/rope { }; 1157 1157 1158 + routes = callPackage ../development/ocaml-modules/routes { }; 1159 + 1158 1160 rpclib = callPackage ../development/ocaml-modules/rpclib { }; 1159 1161 1160 1162 rpclib-lwt = callPackage ../development/ocaml-modules/rpclib/lwt.nix { };