nixpkgs/pkgs/development/guile-modules/guile-cairo/default.nix

51 lines
1.2 KiB
Nix
Raw Normal View History

2021-04-15 14:49:02 +00:00
{ lib
, stdenv
, fetchurl
, cairo
, expat
, guile
, guile-lib
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "guile-cairo";
2020-12-02 09:37:31 +00:00
version = "1.11.2";
src = fetchurl {
2021-04-15 14:49:02 +00:00
url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
hash = "sha256-YjLU3Cxb2dMxE5s7AfQ0PD4fucp4mDYaaZIGcwlBoHs=";
};
2021-04-15 14:49:02 +00:00
nativeBuildInputs = [
pkg-config
];
buildInputs = [
cairo
expat
guile
];
2018-10-13 13:38:57 +00:00
enableParallelBuilding = true;
doCheck = false; # Cannot find unit-test module from guile-lib
2018-10-13 13:38:57 +00:00
checkInputs = [ guile-lib ];
meta = with lib; {
2021-04-15 14:49:02 +00:00
homepage = "https://www.nongnu.org/guile-cairo/";
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.
'';
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
};
}