On Mon, Mar 28, 2016 at 06:17:05PM +0200, Nils Gillmann wrote: > From 4633dc3484390fa6e399084336e73879066b1760 Mon Sep 17 00:00:00 2001 > From: Nils Gillmann <niaster...@grrlz.net> > Date: Mon, 28 Mar 2016 18:10:12 +0200 > Subject: [PATCH] gnu: Add gnunet-gtk-svn. > > * gnu/packages/gnunet.scm (gnunet-gtk-svn): New variable. > Coauthored by Jookia. > --- > gnu/packages/gnunet.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > > diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm > index fe6ca14..fa55179 100644 > --- a/gnu/packages/gnunet.scm > +++ b/gnu/packages/gnunet.scm > @@ -419,3 +419,49 @@ development purposes and keeping up with latest changes, > the SVN version > might be preferable until a new version is released.") > (license license:gpl3+) > (home-page "https://gnunet.org/"))) > + > +;; current WM related bug being traced:
s/traced/tracked > +;; #22985: using gnune-gtk with ratpoison (gnunet-fs in -gtk > +;; nonfunctional) -> needs participation and input) > +(define-public gnunet-gtk-svn > + (package > + (inherit gnunet-svn) > + (name "gnunet-gtk-svn") > + (version (package-version gnunet-svn)) > + (source > + (origin > + (method svn-fetch) > + (uri (svn-reference > + (url "https://gnunet.org/svn/gnunet-gtk/") > + (revision 36926))) Same question as before about the length of the SVN identifier. > + (file-name (string-append name "-" version "-checkout")) > + (sha256 (base32 > + "0kbxgfv08kh69vcrkvm23d2vggyww48h9cvgw4gdfs3i146zkfqb")))) > + (arguments > + `(#:configure-flags > + (list "--without-libunique" Can you say why this is disabled? > + "--with-qrencode" > + (string-append "--with-gnunet=" > + (assoc-ref %build-inputs "gnunet-svn"))) > + #:phases (modify-phases %standard-phases > + (add-before 'configure 'bootstrap > + (lambda _ > + (zero? (system* "autoreconf" "-vfi"))))))) > + (inputs > + `(("gnunet-svn" ,gnunet-svn) > + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) > + ("gnutls" ,gnutls) > + ("libgcrypt" ,libgcrypt) > + ("gtk+" ,gtk+) > + ("libextractor" ,libextractor) > + ("glade3" ,glade3) > + ("qrencode" ,qrencode))) > + (native-inputs > + `(("pkg-config" ,pkg-config) > + ("libglade" ,libglade) > + ("autoconf" ,autoconf) > + ("gettext" ,gnu-gettext) > + ("automake" ,automake) > + ("libtool" ,libtool))) > + (synopsis "Graphical front-end tools for GNUnet") > + (home-page "https://gnunet.org"))) > -- > 2.7.3 > > > -- > ng > personal contact: http://krosos.sdf.org > EDN: https://wiki.c3d2.de/EDN