guile-gnome: code style formatting nitpicks

This commit is contained in:
xd1le 2017-09-25 10:30:09 +10:00 committed by Robin Gloster
parent 16012ff98a
commit 88ef99e2c3

View file

@ -1,58 +1,41 @@
{ fetchurl, stdenv, guile, guile-lib, gwrap { fetchurl, stdenv, guile, guile-lib, gwrap
, pkgconfig, gconf, glib, gnome_vfs, gtk2 , pkgconfig, gconf, glib, gnome_vfs, gtk2
, libglade, libgnome, libgnomecanvas, libgnomeui , libglade, libgnome, libgnomecanvas, libgnomeui
, pango, guile-cairo, autoconf, automake, texinfo }: , pango, guile-cairo, autoconf, automake, texinfo
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "guile-gnome-platform-2.16.4"; name = "${pname}-${version}";
pname = "guile-gnome-platform";
version = "2.16.4";
src = fetchurl { src = fetchurl {
url = "http://ftp.gnu.org/pub/gnu/guile-gnome/guile-gnome-platform/${name}.tar.gz"; url = "http://ftp.gnu.org/pub/gnu/guile-gnome/${pname}/${name}.tar.gz";
sha256 = "adabd48ed5993d8528fd604e0aa0d96ad81a61d06da6cdd68323572ad6c216c3"; sha256 = "adabd48ed5993d8528fd604e0aa0d96ad81a61d06da6cdd68323572ad6c216c3";
}; };
buildInputs = [ buildInputs = [
autoconf autoconf automake texinfo guile gwrap pkgconfig gconf glib gnome_vfs gtk2
automake libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
texinfo
guile
gwrap
pkgconfig
gconf
glib
gnome_vfs
gtk2
libglade
libgnome
libgnomecanvas
libgnomeui
pango
guile-cairo
] ++ stdenv.lib.optional doCheck guile-lib; ] ++ stdenv.lib.optional doCheck guile-lib;
preConfigure = '' preConfigure = "./autogen.sh";
./autogen.sh
'';
# The test suite tries to open an X display, which fails. # The test suite tries to open an X display, which fails.
doCheck = false; doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "GNOME bindings for GNU Guile"; description = "GNOME bindings for GNU Guile";
longDescription = ''
longDescription = GNU guile-gnome brings the power of Scheme to your graphical application.
'' GNU guile-gnome brings the power of Scheme to your graphical guile-gnome modules support the entire Gnome library stack: from Pango to
application. guile-gnome modules support the entire Gnome library GnomeCanvas, Gtk+ to GStreamer, Glade to GtkSourceView, you will find in
stack: from Pango to GnomeCanvas, Gtk+ to GStreamer, Glade to guile-gnome a comprehensive environment for developing modern
GtkSourceView, you will find in guile-gnome a comprehensive applications.
environment for developing modern applications. '';
''; homepage = "http://www.gnu.org/software/guile-gnome/";
homepage = http://www.gnu.org/software/guile-gnome/;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ vyp ]; maintainers = with maintainers; [ vyp ];
platforms = with platforms; linux; platforms = platforms.linux;
}; };
} }