2017-09-24 10:19:44 +00:00
|
|
|
{ fetchurl, stdenv, guile, guile-lib, gwrap
|
2016-09-11 21:24:51 +00:00
|
|
|
, pkgconfig, gconf, glib, gnome_vfs, gtk2
|
2015-07-22 17:56:03 +00:00
|
|
|
, libglade, libgnome, libgnomecanvas, libgnomeui
|
2017-09-28 12:48:19 +00:00
|
|
|
, pango, guile-cairo, texinfo
|
2017-09-25 00:30:09 +00:00
|
|
|
}:
|
2009-10-05 22:21:50 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-25 00:30:09 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "guile-gnome-platform";
|
|
|
|
version = "2.16.4";
|
2009-10-05 22:21:50 +00:00
|
|
|
|
2016-07-22 16:22:06 +00:00
|
|
|
src = fetchurl {
|
2017-09-28 12:48:19 +00:00
|
|
|
url = "mirror://gnu/guile-gnome/${pname}/${name}.tar.gz";
|
2016-07-22 16:22:06 +00:00
|
|
|
sha256 = "adabd48ed5993d8528fd604e0aa0d96ad81a61d06da6cdd68323572ad6c216c3";
|
2009-10-05 22:21:50 +00:00
|
|
|
};
|
|
|
|
|
2015-07-22 17:56:03 +00:00
|
|
|
buildInputs = [
|
2017-09-28 12:48:19 +00:00
|
|
|
texinfo guile gwrap pkgconfig gconf glib gnome_vfs gtk2
|
2017-09-25 00:30:09 +00:00
|
|
|
libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
|
2017-09-24 10:19:44 +00:00
|
|
|
] ++ stdenv.lib.optional doCheck guile-lib;
|
2015-07-22 17:56:03 +00:00
|
|
|
|
2009-10-05 22:21:50 +00:00
|
|
|
# The test suite tries to open an X display, which fails.
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-09-28 12:48:19 +00:00
|
|
|
GUILE_AUTO_COMPILE = 0;
|
|
|
|
|
2016-07-22 16:22:06 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-10-05 22:21:50 +00:00
|
|
|
description = "GNOME bindings for GNU Guile";
|
2017-09-25 00:30:09 +00:00
|
|
|
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 = "http://www.gnu.org/software/guile-gnome/";
|
2016-07-22 16:22:06 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-09-25 00:24:03 +00:00
|
|
|
maintainers = with maintainers; [ vyp ];
|
2017-09-25 00:30:09 +00:00
|
|
|
platforms = platforms.linux;
|
2009-10-05 22:21:50 +00:00
|
|
|
};
|
|
|
|
}
|