about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-03-14 07:31:07 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-03-14 07:32:48 +0000
commit0ad2243c663fbd9b4482e47d4575b0cfaa5e6536 (patch)
treeb4e4b95a2560de94de451042c3cde15c2550ad0d /pkgs/tools
parent841b89cac85398ca49591bc7d7bc21655a8aaf83 (diff)
downloadnixlib-0ad2243c663fbd9b4482e47d4575b0cfaa5e6536.tar
nixlib-0ad2243c663fbd9b4482e47d4575b0cfaa5e6536.tar.gz
nixlib-0ad2243c663fbd9b4482e47d4575b0cfaa5e6536.tar.bz2
nixlib-0ad2243c663fbd9b4482e47d4575b0cfaa5e6536.tar.lz
nixlib-0ad2243c663fbd9b4482e47d4575b0cfaa5e6536.tar.xz
nixlib-0ad2243c663fbd9b4482e47d4575b0cfaa5e6536.tar.zst
nixlib-0ad2243c663fbd9b4482e47d4575b0cfaa5e6536.zip
mc: quote urls
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/mc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/mc/default.nix b/pkgs/tools/misc/mc/default.nix
index 60bc153c83f8..07c5f9b35174 100644
--- a/pkgs/tools/misc/mc/default.nix
+++ b/pkgs/tools/misc/mc/default.nix
@@ -60,11 +60,11 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "File Manager and User Shell for the GNU Project";
     downloadPage = "https://www.midnight-commander.org/downloads/";
-    homepage = https://www.midnight-commander.org;
+    homepage = "https://www.midnight-commander.org";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ sander ];
     platforms = with platforms; linux ++ darwin;
-    repositories.git = git://github.com/MidnightCommander/mc.git;
+    repositories.git = "https://github.com/MidnightCommander/mc.git";
     updateWalker = true;
   };
 }