2021-01-11 07:54:33 +00:00
|
|
|
{ fetchurl, lib, stdenv, guile, guile-lib, gwrap
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config, 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
|
|
|
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 {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://gnu/guile-gnome/${pname}/${pname}-${version}.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 = [
|
2021-01-19 06:50:56 +00:00
|
|
|
texinfo guile gwrap pkg-config gconf glib gnome_vfs gtk2
|
2017-09-25 00:30:09 +00:00
|
|
|
libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
|
2021-01-17 18:11:59 +00:00
|
|
|
] ++ 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;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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
|
2019-09-03 22:49:40 +00:00
|
|
|
GnomeCanvas, GTK to GStreamer, Glade to GtkSourceView, you will find in
|
2017-09-25 00:30:09 +00:00
|
|
|
guile-gnome a comprehensive environment for developing modern
|
|
|
|
applications.
|
|
|
|
'';
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = "https://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
|
|
|
};
|
|
|
|
}
|