summary refs log tree commit diff
path: root/pkgs/misc/themes
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2017-08-01 22:03:30 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-08-01 22:03:30 +0200
commitf5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96 (patch)
tree37e63a069ad3b93b0823b7e19168652dbd421cea /pkgs/misc/themes
parent3b06b8edb792dbf149ad04794c6e35149587ee20 (diff)
downloadnixlib-f5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96.tar
nixlib-f5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96.tar.gz
nixlib-f5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96.tar.bz2
nixlib-f5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96.tar.lz
nixlib-f5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96.tar.xz
nixlib-f5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96.tar.zst
nixlib-f5fa5fa4d629a0dbc8033d86f1d5c6b2eb531f96.zip
pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
Diffstat (limited to 'pkgs/misc/themes')
-rw-r--r--pkgs/misc/themes/adapta/default.nix2
-rw-r--r--pkgs/misc/themes/arc/default.nix2
-rw-r--r--pkgs/misc/themes/gnome-breeze/default.nix2
-rw-r--r--pkgs/misc/themes/paper/default.nix2
-rw-r--r--pkgs/misc/themes/zuki/default.nix2
5 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/misc/themes/adapta/default.nix b/pkgs/misc/themes/adapta/default.nix
index ff0e92d5b0e9..e62707afb7ca 100644
--- a/pkgs/misc/themes/adapta/default.nix
+++ b/pkgs/misc/themes/adapta/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "An adaptive GTK+ theme based on Material Design";
-    homepage = "https://github.com/tista500/Adapta";
+    homepage = https://github.com/tista500/Adapta;
     license = with licenses; [ gpl2 cc-by-sa-30 ];
     platforms = platforms.linux;
     maintainers = [ maintainers.romildo ];
diff --git a/pkgs/misc/themes/arc/default.nix b/pkgs/misc/themes/arc/default.nix
index 523ac16bf6a2..544642bc014b 100644
--- a/pkgs/misc/themes/arc/default.nix
+++ b/pkgs/misc/themes/arc/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
-    homepage = "https://github.com/horst3180/arc-theme";
+    homepage = https://github.com/horst3180/arc-theme;
     license = licenses.gpl3;
     platforms = platforms.unix;
     maintainers = with maintainers; [ simonvandel romildo ];
diff --git a/pkgs/misc/themes/gnome-breeze/default.nix b/pkgs/misc/themes/gnome-breeze/default.nix
index ac0fb2cfee7d..73e9ea604d77 100644
--- a/pkgs/misc/themes/gnome-breeze/default.nix
+++ b/pkgs/misc/themes/gnome-breeze/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
 
   meta = {
     description = "A GTK theme built to match KDE's breeze theme";
-    homepage = "https://github.com/dirruk1/gnome-breeze";
+    homepage = https://github.com/dirruk1/gnome-breeze;
     license = stdenv.lib.licenses.lgpl2;
     maintainers = with stdenv.lib.maintainers; [ bennofs ];
     platforms = stdenv.lib.platforms.all;
diff --git a/pkgs/misc/themes/paper/default.nix b/pkgs/misc/themes/paper/default.nix
index 32883127c064..3a337520d938 100644
--- a/pkgs/misc/themes/paper/default.nix
+++ b/pkgs/misc/themes/paper/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
-    homepage = "http://snwh.org/paper";
+    homepage = http://snwh.org/paper;
     license = licenses.gpl3;
     platforms = platforms.linux;
     maintainers = [ maintainers.simonvandel maintainers.romildo ];
diff --git a/pkgs/misc/themes/zuki/default.nix b/pkgs/misc/themes/zuki/default.nix
index 8fa6176f22eb..cee459134991 100644
--- a/pkgs/misc/themes/zuki/default.nix
+++ b/pkgs/misc/themes/zuki/default.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "A selection of themes for GTK3, gnome-shell and more";
-    homepage = "https://github.com/lassekongo83/zuki-themes";
+    homepage = https://github.com/lassekongo83/zuki-themes;
     license = stdenv.lib.licenses.gpl3;
     platforms = stdenv.lib.platforms.unix;
     maintainers = [ stdenv.lib.maintainers.romildo ];