From add631d16fd3e512b50ef435fa4dfeb7bf75e8ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 2 Aug 2021 09:14:33 +0200 Subject: [PATCH] tahoe-lafs: cleanup --- pkgs/tools/networking/p2p/tahoe-lafs/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix index 9f3ba60af84f..b0f4cd1f788a 100644 --- a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix +++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix @@ -6,9 +6,8 @@ # some loss of functionality because of it. python3Packages.buildPythonApplication rec { - version = "2021-07-09"; pname = "tahoe-lafs"; - namePrefix = ""; + version = "unstable-2021-07-09"; src = fetchFromGitHub { owner = "tahoe-lafs"; @@ -84,7 +83,7 @@ python3Packages.buildPythonApplication rec { trial --rterrors allmydata ''; - meta = { + meta = with lib; { description = "Tahoe-LAFS, a decentralized, fault-tolerant, distributed storage system"; longDescription = '' Tahoe-LAFS is a secure, decentralized, fault-tolerant filesystem. @@ -92,9 +91,9 @@ python3Packages.buildPythonApplication rec { such a way that it remains available even when some of the peers are unavailable, malfunctioning, or malicious. ''; - homepage = "http://tahoe-lafs.org/"; - license = [ lib.licenses.gpl2Plus /* or */ "TGPPLv1+" ]; + homepage = "https://tahoe-lafs.org/"; + license = [ licenses.gpl2Plus /* or */ "TGPPLv1+" ]; maintainers = with lib.maintainers; [ MostAwesomeDude ]; - platforms = lib.platforms.gnu ++ lib.platforms.linux; + platforms = platforms.gnu ++ platforms.linux; }; }