tahoe-lafs: cleanup

+5 -6
+5 -6
pkgs/tools/networking/p2p/tahoe-lafs/default.nix
··· 6 6 # some loss of functionality because of it. 7 7 8 8 python3Packages.buildPythonApplication rec { 9 - version = "2021-07-09"; 10 9 pname = "tahoe-lafs"; 11 - namePrefix = ""; 10 + version = "unstable-2021-07-09"; 12 11 13 12 src = fetchFromGitHub { 14 13 owner = "tahoe-lafs"; ··· 84 83 trial --rterrors allmydata 85 84 ''; 86 85 87 - meta = { 86 + meta = with lib; { 88 87 description = "Tahoe-LAFS, a decentralized, fault-tolerant, distributed storage system"; 89 88 longDescription = '' 90 89 Tahoe-LAFS is a secure, decentralized, fault-tolerant filesystem. ··· 92 91 such a way that it remains available even when some of the peers 93 92 are unavailable, malfunctioning, or malicious. 94 93 ''; 95 - homepage = "http://tahoe-lafs.org/"; 96 - license = [ lib.licenses.gpl2Plus /* or */ "TGPPLv1+" ]; 94 + homepage = "https://tahoe-lafs.org/"; 95 + license = [ licenses.gpl2Plus /* or */ "TGPPLv1+" ]; 97 96 maintainers = with lib.maintainers; [ MostAwesomeDude ]; 98 - platforms = lib.platforms.gnu ++ lib.platforms.linux; 97 + platforms = platforms.gnu ++ platforms.linux; 99 98 }; 100 99 }