summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p/tahoe-lafs/default.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-08-02 10:14:12 +0000
committerGitHub <noreply@github.com>2021-08-02 10:14:12 +0000
commit633a5a6af95e2e41710a68e44dbf0a6f05c7ec75 (patch)
tree5ede16fb0935bb1950ac3363e1add6dff1eee26c /pkgs/tools/networking/p2p/tahoe-lafs/default.nix
parentc8a731593bf5ae9287fae604f8bda8b93dc1d3a1 (diff)
parent42e77915565d38b2209e79c3b0c81bede7e27662 (diff)
downloadnixpkgs-633a5a6af95e2e41710a68e44dbf0a6f05c7ec75.tar
nixpkgs-633a5a6af95e2e41710a68e44dbf0a6f05c7ec75.tar.gz
nixpkgs-633a5a6af95e2e41710a68e44dbf0a6f05c7ec75.tar.bz2
nixpkgs-633a5a6af95e2e41710a68e44dbf0a6f05c7ec75.tar.lz
nixpkgs-633a5a6af95e2e41710a68e44dbf0a6f05c7ec75.tar.xz
nixpkgs-633a5a6af95e2e41710a68e44dbf0a6f05c7ec75.tar.zst
nixpkgs-633a5a6af95e2e41710a68e44dbf0a6f05c7ec75.zip
Merge pull request #132391 from SuperSandro2000/cleanup
Diffstat (limited to 'pkgs/tools/networking/p2p/tahoe-lafs/default.nix')
-rw-r--r--pkgs/tools/networking/p2p/tahoe-lafs/default.nix11
1 files 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 9f3ba60af84..b0f4cd1f788 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;
   };
 }