about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-05-08 15:20:47 +0200
committerPavol Rusnak <pavol@rusnak.io>2020-05-08 15:20:47 +0200
commit6abf4a43adc899c352b91c5230afce29344dbe77 (patch)
tree785d229aaa9a20121f8268edf45fc97c8b6e4515 /pkgs/applications
parentc15434eefa2dce693ce119aa08b2650345d29482 (diff)
downloadnixlib-6abf4a43adc899c352b91c5230afce29344dbe77.tar
nixlib-6abf4a43adc899c352b91c5230afce29344dbe77.tar.gz
nixlib-6abf4a43adc899c352b91c5230afce29344dbe77.tar.bz2
nixlib-6abf4a43adc899c352b91c5230afce29344dbe77.tar.lz
nixlib-6abf4a43adc899c352b91c5230afce29344dbe77.tar.xz
nixlib-6abf4a43adc899c352b91c5230afce29344dbe77.tar.zst
nixlib-6abf4a43adc899c352b91c5230afce29344dbe77.zip
treewide: per RFC45, remove more unquoted URLs
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/emacs-modes/emacspeak/default.nix2
-rw-r--r--pkgs/applications/editors/emacs/default.nix2
-rw-r--r--pkgs/applications/networking/browsers/ungoogled-chromium/browser.nix2
-rw-r--r--pkgs/applications/science/physics/elmerfem/default.nix2
4 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/emacs-modes/emacspeak/default.nix b/pkgs/applications/editors/emacs-modes/emacspeak/default.nix
index 5bc8bbc6a90e..eb6eac1acbfd 100644
--- a/pkgs/applications/editors/emacs-modes/emacspeak/default.nix
+++ b/pkgs/applications/editors/emacs-modes/emacspeak/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = https://github.com/tvraman/emacspeak/;
+    homepage = "https://github.com/tvraman/emacspeak/";
     description = "Emacs extension that provides spoken output";
     license = licenses.gpl2;
     maintainers = [ dema ];
diff --git a/pkgs/applications/editors/emacs/default.nix b/pkgs/applications/editors/emacs/default.nix
index fc00384c03ae..224fe9074500 100644
--- a/pkgs/applications/editors/emacs/default.nix
+++ b/pkgs/applications/editors/emacs/default.nix
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
     ./tramp-detect-wrapped-gvfsd.patch
     # unbreak macOS unexec
     (fetchpatch {
-      url = https://github.com/emacs-mirror/emacs/commit/888ffd960c06d56a409a7ff15b1d930d25c56089.patch;
+      url = "https://github.com/emacs-mirror/emacs/commit/888ffd960c06d56a409a7ff15b1d930d25c56089.patch";
       sha256 = "08q3ygdigqwky70r47rcgzlkc5jy82xiq8am5kwwy891wlpl7frw";
     })
   ];
diff --git a/pkgs/applications/networking/browsers/ungoogled-chromium/browser.nix b/pkgs/applications/networking/browsers/ungoogled-chromium/browser.nix
index 87248013a9af..f87acc8722e4 100644
--- a/pkgs/applications/networking/browsers/ungoogled-chromium/browser.nix
+++ b/pkgs/applications/networking/browsers/ungoogled-chromium/browser.nix
@@ -76,7 +76,7 @@ mkChromiumDerivation (base: rec {
       the web. It has a minimalist user interface and provides the vast majority
       of source code for Google Chrome (which has some additional features).
     '';
-    homepage = https://github.com/Eloston/ungoogled-chromium;
+    homepage = "https://github.com/Eloston/ungoogled-chromium";
     maintainers = with maintainers; [ squalus ];
     # Overview of the maintainer roles:
     # nixos-unstable:
diff --git a/pkgs/applications/science/physics/elmerfem/default.nix b/pkgs/applications/science/physics/elmerfem/default.nix
index 642982830f70..46cc32fa168e 100644
--- a/pkgs/applications/science/physics/elmerfem/default.nix
+++ b/pkgs/applications/science/physics/elmerfem/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {
-    homepage = http://www.elmerfem.org/;
+    homepage = "https://elmerfem.org/";
     description = "A finite element software for multiphysical problems.";
     platforms = platforms.unix;
     maintainers = [ maintainers.wulfsta ];