ocamlPackages.gnuplot: init at 0.5.3
This commit is contained in:
parent
eddfe95f29
commit
b103ec0911
22
pkgs/development/ocaml-modules/gnuplot/default.nix
Normal file
22
pkgs/development/ocaml-modules/gnuplot/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -297,6 +297,10 @@ let
|
|||||||
|
|
||||||
gmap = callPackage ../development/ocaml-modules/gmap { };
|
gmap = callPackage ../development/ocaml-modules/gmap { };
|
||||||
|
|
||||||
|
gnuplot = callPackage ../development/ocaml-modules/gnuplot {
|
||||||
|
inherit (pkgs) gnuplot;
|
||||||
|
};
|
||||||
|
|
||||||
herelib = callPackage ../development/ocaml-modules/herelib { };
|
herelib = callPackage ../development/ocaml-modules/herelib { };
|
||||||
|
|
||||||
higlo = callPackage ../development/ocaml-modules/higlo { };
|
higlo = callPackage ../development/ocaml-modules/higlo { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user