1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

mc: quote urls

This commit is contained in:
Jörg Thalheim 2020-03-14 07:31:07 +00:00
parent 841b89cac8
commit 0ad2243c66
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -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;
};
}