summary refs log tree commit diff
path: root/pkgs/development/guile-modules/guile-cairo/default.nix
blob: 7617e5fb1cd95686eaf8a04e0bab8ca9e1a1a042 (plain) (blame)
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
32
33
34
35
36
{ fetchurl, stdenv, guile, pkgconfig, cairo, expat, guile_lib }:

stdenv.mkDerivation rec {
  name = "guile-cairo-1.4.1";

  src = fetchurl {
    url = "http://download.gna.org/guile-cairo/${name}.tar.gz";
    sha256 = "1f5nd9n46n6cwfl1byjml02q3y2hgn7nkx98km1czgwarxl7ws3x";
  };

  buildInputs = [ guile pkgconfig cairo expat ]
    ++ stdenv.lib.optional doCheck guile_lib;

  doCheck = true;

  meta = {
    description = "Guile-Cairo, 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 = stdenv.lib.licenses.lgpl3Plus;

    homepage = http://home.gna.org/guile-cairo/;

    maintainers = [ stdenv.lib.maintainers.ludo ];
  };
}