python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / linenoise / default.nix
blob32cbc268e76f5a4b9256edf99247c0208ebfcfc4
1 { lib, fetchFromGitHub, buildDunePackage, result }:
3 buildDunePackage rec {
4   pname = "linenoise";
5   version = "1.3.1";
7   useDune2 = true;
9   minimumOCamlVersion = "4.02";
11   src = fetchFromGitHub {
12     owner = "fxfactorial";
13     repo = "ocaml-${pname}";
14     rev = "v${version}";
15     sha256 = "sha256-5DlF56reh52Tvbi3wGK8ZrPBAYK0ZTBV3jz8qUsyKGk=";
16   };
18   propagatedBuildInputs = [ result ];
20   meta = {
21     description = "OCaml bindings to linenoise";
22     license = lib.licenses.bsd3;
23     maintainers = [ lib.maintainers.vbgl ];
24     inherit (src.meta) homepage;
25   };