2020-03-15 17:14:32 +00:00
|
|
|
{ lib, fetchurl, buildDunePackage, dune-configurator, libX11 }:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
|
|
|
|
pname = "graphics";
|
2021-12-08 21:54:49 +00:00
|
|
|
version = "5.1.2";
|
2020-03-15 17:14:32 +00:00
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ocaml/graphics/releases/download/${version}/graphics-${version}.tbz";
|
2021-12-08 21:54:49 +00:00
|
|
|
sha256 = "sha256-QA/YHSPxy0FGuWl5NCwkeXHdVPWHn/0vgOx80CEuMtQ=";
|
2020-03-15 17:14:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [ libX11 ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/ocaml/graphics";
|
|
|
|
description = "A set of portable drawing primitives";
|
|
|
|
license = lib.licenses.lgpl2;
|
|
|
|
};
|
|
|
|
}
|