ocamlPackages.gnuplot: init at 0.5.3

This commit is contained in:
Ben Darwin 2019-12-02 11:18:14 -05:00
parent eddfe95f29
commit b103ec0911
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildDunePackage, fetchFromBitbucket, gnuplot, core }:
buildDunePackage rec {
pname = "gnuplot";
version = "0.5.3";
src = fetchFromBitbucket {
owner = "ogu";
repo = "${pname}-ocaml";
rev = "release-${version}";
sha256 = "00sn9g46pj8pfh7faiyxg3pfhq7w9knafyabjr464bh6qz5kiin3";
};
propagatedBuildInputs = [ core gnuplot ];
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Ocaml bindings to Gnuplot";
maintainers = [ maintainers.bcdarwin ];
license = licenses.lgpl21;
};
}

View File

@ -297,6 +297,10 @@ let
gmap = callPackage ../development/ocaml-modules/gmap { };
gnuplot = callPackage ../development/ocaml-modules/gnuplot {
inherit (pkgs) gnuplot;
};
herelib = callPackage ../development/ocaml-modules/herelib { };
higlo = callPackage ../development/ocaml-modules/higlo { };