summary refs log tree commit diff
path: root/pkgs/tools/networking
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
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')
-rw-r--r--pkgs/tools/networking/ghostunnel/default.nix17
-rw-r--r--pkgs/tools/networking/p2p/tahoe-lafs/default.nix11
2 files changed, 14 insertions, 14 deletions
diff --git a/pkgs/tools/networking/ghostunnel/default.nix b/pkgs/tools/networking/ghostunnel/default.nix
index c5b7d3db0f1..43cfe481290 100644
--- a/pkgs/tools/networking/ghostunnel/default.nix
+++ b/pkgs/tools/networking/ghostunnel/default.nix
@@ -1,8 +1,7 @@
-{
-  buildGoModule,
-  fetchFromGitHub,
-  lib,
-  nixosTests,
+{ buildGoModule
+, fetchFromGitHub
+, lib
+, nixosTests
 }:
 
 buildGoModule rec {
@@ -27,13 +26,15 @@ buildGoModule rec {
     mv $sourceRoot/certstore $sourceRoot/vendor/ghostunnel/
   '';
 
+  passthru.tests = {
+    nixos = nixosTests.ghostunnel;
+    podman = nixosTests.podman-tls-ghostunnel;
+  };
+
   meta = with lib; {
     description = "A simple TLS proxy with mutual authentication support for securing non-TLS backend applications";
     homepage = "https://github.com/ghostunnel/ghostunnel#readme";
     license = licenses.asl20;
     maintainers = with maintainers; [ roberth ];
   };
-
-  passthru.tests.nixos = nixosTests.ghostunnel;
-  passthru.tests.podman = nixosTests.podman-tls-ghostunnel;
 }
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;
   };
 }