nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / dispatch / default.nix
blobb5546a406c3db16240ff206556a07b93c35e54bf
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   ocaml,
6   alcotest,
7   result,
8 }:
10 buildDunePackage rec {
11   pname = "dispatch";
12   version = "0.5.0";
14   duneVersion = "3";
16   src = fetchFromGitHub {
17     owner = "inhabitedtype";
18     repo = "ocaml-dispatch";
19     rev = version;
20     sha256 = "12r39ylbxc297cbwjadhd1ghxnwwcdzfjk68r97wim8hcgzxyxv4";
21   };
23   propagatedBuildInputs = [ result ];
25   checkInputs = [ alcotest ];
27   doCheck = lib.versionAtLeast ocaml.version "4.08";
29   meta = {
30     inherit (src.meta) homepage;
31     license = lib.licenses.bsd3;
32     description = "Path-based dispatching for client- and server-side applications";
33     maintainers = [ lib.maintainers.vbgl ];
34   };