ocamlPackages.gnuplot: 0.5.3 → 0.7
This commit is contained in:
parent
8e686bacc4
commit
206cf8a341
@ -1,19 +1,21 @@
|
|||||||
{ stdenv, buildDunePackage, fetchFromBitbucket, gnuplot, core }:
|
{ lib, buildDunePackage, fetchFromGitHub, gnuplot, iso8601 }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "gnuplot";
|
pname = "gnuplot";
|
||||||
version = "0.5.3";
|
version = "0.7";
|
||||||
|
|
||||||
src = fetchFromBitbucket {
|
minimumOCamlVersion = "4.03";
|
||||||
owner = "ogu";
|
|
||||||
repo = "${pname}-ocaml";
|
src = fetchFromGitHub {
|
||||||
rev = "release-${version}";
|
owner = "c-cube";
|
||||||
sha256 = "00sn9g46pj8pfh7faiyxg3pfhq7w9knafyabjr464bh6qz5kiin3";
|
repo = "ocaml-${pname}";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "02pzi3lb57ysrdsba743s3vmnapjbxgq8ynlzpxbbs6cn1jj6ch9";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ core gnuplot ];
|
propagatedBuildInputs = [ gnuplot iso8601 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
description = "Ocaml bindings to Gnuplot";
|
description = "Ocaml bindings to Gnuplot";
|
||||||
maintainers = [ maintainers.bcdarwin ];
|
maintainers = [ maintainers.bcdarwin ];
|
||||||
|
Loading…
Reference in New Issue
Block a user