python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / gnuplot / default.nix
blob038863aad978a7bf65814bd776596434ec3b7125
1 { lib, buildDunePackage, fetchFromGitHub, gnuplot, iso8601 }:
3 buildDunePackage rec {
4   pname = "gnuplot";
5   version = "0.7";
7   useDune2 = true;
9   minimumOCamlVersion = "4.03";
11   src = fetchFromGitHub {
12     owner  = "c-cube";
13     repo   = "ocaml-${pname}";
14     rev    = "v${version}";
15     sha256 = "02pzi3lb57ysrdsba743s3vmnapjbxgq8ynlzpxbbs6cn1jj6ch9";
16   };
18   propagatedBuildInputs = [ gnuplot iso8601 ];
20   meta = with lib; {
21     inherit (src.meta) homepage;
22     description = "Ocaml bindings to Gnuplot";
23     maintainers = [ maintainers.bcdarwin ];
24     license = licenses.lgpl21;
25   };