about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/guile-modules/guile-gnome/default.nix
blob: ead08ce0231b15ec27de1182368e7dd306e424cf (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{ lib
, stdenv
, fetchurl
, gconf
, glib
, gnome_vfs
, gtk2
, guile
, guile-cairo
, guile-lib
, gwrap
, libglade
, libgnome
, libgnomecanvas
, libgnomeui
, pango
, pkg-config
, texinfo
}:

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

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

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

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

  makeFlags = [
    "GUILE_AUTO_COMPILE=0"
  ];

  meta = with lib; {
    homepage = "https://www.gnu.org/software/guile-gnome/";
    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.
    '';
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ vyp ];
    platforms = platforms.linux;
  };
}