Federico Beffa <be...@ieee.org> skribis: > From 7439f19c1f2966466da88554478b796c3bfca429 Mon Sep 17 00:00:00 2001 > From: Federico Beffa <be...@fbengineering.ch> > Date: Sun, 2 Nov 2014 18:09:33 +0100 > Subject: [PATCH 2/2] gnu: Add gnome-themes-standard. > > * gnu/packages/gnome.scm (gnome-themes-standard): New variable.
[...] > +;; The version of this package should be the same as the version of > +;; gnome-desktop. > +(define-public gnome-themes-standard > + (package > + (name "gnome-themes-standard") > + (version "3.10.0") Please use (version (package-version gnome-desktop)) here, and put the comment just above it. > + (uri (string-append "mirror://gnome/sources/" name "/" > + (string-take version 4) "/" name "-" Use ‘version-major+minor’ instead of ‘string-take’. OK to push with these changes. Thanks! Ludo’.