blob: dace43ff644aa3a9d40ec90c98dc07af0005c2b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildDunePackage,
fetchFromGitHub,
gnuplot,
iso8601,
}:
buildDunePackage (finalAttrs: {
pname = "gnuplot";
version = "0.7";
src = fetchFromGitHub {
owner = "c-cube";
repo = "ocaml-gnuplot";
tag = "v${finalAttrs.version}";
hash = "sha256-CTIjZbDM6LX6/dR6hF9f8ipb99CDHLV0y9qfsuiI/wo=";
};
propagatedBuildInputs = [
gnuplot
iso8601
];
meta = {
homepage = "https://github.com/c-cube/ocaml-gnuplot";
description = "OCaml bindings to Gnuplot";
maintainers = [ lib.maintainers.bcdarwin ];
license = lib.licenses.lgpl21;
};
})
|