summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-03-29 17:53:51 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2020-03-29 18:40:57 +0200
commitec5a3021c56b4dcc1029c37c68824adccb8e7ea2 (patch)
tree7d89a86a4cbb1f258af43d0785e8b89136b3a263
parent991a571038a15377e1449aee71a52b7487837124 (diff)
downloadguix-ec5a3021c56b4dcc1029c37c68824adccb8e7ea2.tar.gz
gnu: numix-gtk-theme: Fix name.
* gnu/package/gnome-xyz.scm (numix-gtk-theme): New public variable,
renamed from……
(numix-theme): …this now-deprecated one.
-rw-r--r--gnu/packages/gnome-xyz.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 1f17dfea3e..4ddfdada52 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -468,9 +468,9 @@ scrollable tiling of windows and per monitor workspaces.  It's inspired by paper
 notebooks and tiling window managers.")
     (license license:gpl3)))
 
-(define-public numix-theme
+(define-public numix-gtk-theme
   (package
-    (name "numix-theme")
+    (name "numix-gtk-theme")
     (version "2.6.7")
     (source (origin
               (method git-fetch)
@@ -500,6 +500,9 @@ dark elements.  It supports GNOME, Unity, Xfce, and Openbox.")
     (home-page "https://numixproject.github.io")
     (license license:gpl3+)))
 
+(define-public numix-theme
+  (deprecated-package "numix-theme" numix-gtk-theme))
+
 (define-public papirus-icon-theme
   (let ((version "0.0.0") ;; The package does not use semver
         (revision "0")