Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchurl, 4 buildDunePackage, 5}: 6 7buildDunePackage rec { 8 pname = "routes"; 9 version = "2.0.0"; 10 11 duneVersion = "3"; 12 minimalOCamlVersion = "4.05"; 13 14 src = fetchurl { 15 url = "https://github.com/anuragsoni/routes/releases/download/${version}/routes-${version}.tbz"; 16 hash = "sha256-O2KdaYwrAOUEwTtM14NUgGNxnc8BWAycP1EEuB6w1og="; 17 }; 18 19 meta = with lib; { 20 description = "Typed routing for OCaml applications"; 21 license = licenses.bsd3; 22 homepage = "https://anuragsoni.github.io/routes"; 23 maintainers = with maintainers; [ 24 ulrikstrid 25 anmonteiro 26 ]; 27 }; 28}