2017-09-24 12:03:56 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, guile, guile-lib, cairo, expat }:
|
2009-10-05 23:21:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "guile-cairo";
|
2020-12-02 09:37:31 +00:00
|
|
|
version = "1.11.2";
|
2009-10-05 23:21:24 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://savannah/guile-cairo/${pname}-${version}.tar.gz";
|
2020-12-02 09:37:31 +00:00
|
|
|
sha256 = "0yx0844p61ljd4d3d63qrawiygiw6ks02fwv2cqx7nav5kfd8ck2";
|
2009-10-05 23:21:24 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-09-28 17:32:57 +01:00
|
|
|
|
2018-08-08 19:29:02 +01:00
|
|
|
buildInputs = [ guile cairo expat ];
|
2018-10-13 14:38:57 +01:00
|
|
|
enableParallelBuilding = true;
|
2009-10-05 23:21:24 +01:00
|
|
|
|
2019-05-18 18:07:56 +01:00
|
|
|
doCheck = false; # Cannot find unit-test module from guile-lib
|
2018-10-13 14:38:57 +01:00
|
|
|
checkInputs = [ guile-lib ];
|
2009-10-05 23:21:24 +01:00
|
|
|
|
2017-09-24 12:03:56 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cairo bindings for GNU Guile";
|
|
|
|
longDescription = ''
|
|
|
|
Guile-Cairo wraps the Cairo graphics library for Guile Scheme.
|
|
|
|
|
|
|
|
Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API
|
|
|
|
stable, providing a firm base on which to do graphics work. Finally, and
|
|
|
|
importantly, it is pleasant to use. You get a powerful and well
|
|
|
|
maintained graphics library with all of the benefits of Scheme: memory
|
|
|
|
management, exceptions, macros, and a dynamic programming environment.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.nongnu.org/guile-cairo/";
|
2017-09-24 12:03:56 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
|
|
|
platforms = platforms.linux;
|
2009-10-05 23:21:24 +01:00
|
|
|
};
|
|
|
|
}
|