python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / merlin-extend / default.nix
blobb295c0eda0f7dfd0257cc17d3c68f50599dd19da
1 { lib, buildDunePackage, fetchurl, cppo }:
3 buildDunePackage rec {
4   pname = "merlin-extend";
5   version = "0.6";
7   useDune2 = true;
9   src = fetchurl {
10     url = "https://github.com/let-def/merlin-extend/releases/download/v${version}/merlin-extend-v${version}.tbz";
11     sha256 = "0hvc4mz92x3rl2dxwrhvhzwl4gilnyvvwcqgr45vmdpyjyp3dwn2";
12   };
14   strictDeps = true;
16   nativeBuildInputs = [ cppo ];
18   meta = with lib; {
19     homepage = "https://github.com/let-def/merlin-extend";
20     description = "SDK to extend Merlin";
21     license = licenses.mit;
22     maintainers = [ ];
23   };