mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
Add GNU guile-gnome.
svn path=/nixpkgs/trunk/; revision=17657
This commit is contained in:
parent
c1e5a9d2fb
commit
efb5018a8f
40
pkgs/development/guile-modules/guile-gnome/default.nix
Normal file
40
pkgs/development/guile-modules/guile-gnome/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ fetchurl, stdenv, guile, guileLib, gwrap
|
||||
, pkgconfig, gconf, glib, gnomevfs, gtk
|
||||
, libglade, libgnome, libgnomecanvas, libgnomeui, pango, guileCairo }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "guile-gnome-platform-2.16.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/guile-gnome/guile-gnome-platform/${name}.tar.gz";
|
||||
sha256 = "0yy5f4c78jlakxi2bwgh3knc2szw26hg68xikyaza2iim39mc22c";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ guile gwrap
|
||||
pkgconfig gconf glib gnomevfs gtk libglade libgnome libgnomecanvas
|
||||
libgnomeui pango guileCairo
|
||||
]
|
||||
++ stdenv.lib.optional doCheck guileLib;
|
||||
|
||||
# The test suite tries to open an X display, which fails.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
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 = http://www.gnu.org/software/guile-gnome/;
|
||||
|
||||
license = "GPLv2+";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
};
|
||||
}
|
@ -2439,6 +2439,13 @@ let
|
||||
inherit fetchurl stdenv guile pkgconfig cairo guileLib;
|
||||
};
|
||||
|
||||
guileGnome = import ../development/guile-modules/guile-gnome {
|
||||
inherit fetchurl stdenv guile guileLib gwrap pkgconfig guileCairo;
|
||||
gconf = gnome.GConf;
|
||||
inherit (gnome) glib gnomevfs gtk libglade libgnome libgnomecanvas
|
||||
libgnomeui pango;
|
||||
};
|
||||
|
||||
guileLib = import ../development/guile-modules/guile-lib {
|
||||
inherit fetchurl stdenv guile texinfo;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user