1{ stdenv, buildDunePackage, fetchFromBitbucket, gnuplot, core }:
2
3buildDunePackage rec {
4 pname = "gnuplot";
5 version = "0.5.3";
6
7 src = fetchFromBitbucket {
8 owner = "ogu";
9 repo = "${pname}-ocaml";
10 rev = "release-${version}";
11 sha256 = "00sn9g46pj8pfh7faiyxg3pfhq7w9knafyabjr464bh6qz5kiin3";
12 };
13
14 propagatedBuildInputs = [ core gnuplot ];
15
16 meta = with stdenv.lib; {
17 inherit (src.meta) homepage;
18 description = "Ocaml bindings to Gnuplot";
19 maintainers = [ maintainers.bcdarwin ];
20 license = licenses.lgpl21;
21 };
22}