summary refs log tree commit diff
path: root/pkgs/development/guile-modules/guile-gnome/default.nix
blob: e1ae323707eb82389fa791f670ad3aba9bbeaea5 (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
37
38
39
40
{ fetchurl, lib, stdenv, guile, guile-lib, gwrap
, pkgconfig, gconf, glib, gnome_vfs, gtk2
, libglade, libgnome, libgnomecanvas, libgnomeui
, pango, guile-cairo, texinfo
}:

stdenv.mkDerivation rec {
  pname = "guile-gnome-platform";
  version = "2.16.4";

  src = fetchurl {
    url = "mirror://gnu/guile-gnome/${pname}/${pname}-${version}.tar.gz";
    sha256 = "adabd48ed5993d8528fd604e0aa0d96ad81a61d06da6cdd68323572ad6c216c3";
  };

  buildInputs = [
    texinfo guile gwrap pkgconfig gconf glib gnome_vfs gtk2
    libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
  ] ++ lib.optional doCheck guile-lib;

  # The test suite tries to open an X display, which fails.
  doCheck = false;

  GUILE_AUTO_COMPILE = 0;

  meta = with lib; {
    description = "GNOME bindings for GNU Guile";
    longDescription = ''
      GNU guile-gnome brings the power of Scheme to your graphical application.
      guile-gnome modules support the entire Gnome library stack: from Pango to
      GnomeCanvas, GTK to GStreamer, Glade to GtkSourceView, you will find in
      guile-gnome a comprehensive environment for developing modern
      applications.
    '';
    homepage = "https://www.gnu.org/software/guile-gnome/";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ vyp ];
    platforms = platforms.linux;
  };
}