summary refs log tree commit diff
path: root/pkgs/applications/networking/onionshare
diff options
context:
space:
mode:
authorLouis Bettens <louis@bettens.info>2021-08-21 00:41:36 +0200
committerLouis Bettens <louis@bettens.info>2021-08-21 18:13:11 +0200
commitbf83782d467b65e47e3b027a6451c09abdf7b1de (patch)
tree8ee4516c695e1c320556ba7513a6113309b4e8ea /pkgs/applications/networking/onionshare
parent85e131e51a5d6813230b1c63fc115a737f15de99 (diff)
downloadnixpkgs-bf83782d467b65e47e3b027a6451c09abdf7b1de.tar
nixpkgs-bf83782d467b65e47e3b027a6451c09abdf7b1de.tar.gz
nixpkgs-bf83782d467b65e47e3b027a6451c09abdf7b1de.tar.bz2
nixpkgs-bf83782d467b65e47e3b027a6451c09abdf7b1de.tar.lz
nixpkgs-bf83782d467b65e47e3b027a6451c09abdf7b1de.tar.xz
nixpkgs-bf83782d467b65e47e3b027a6451c09abdf7b1de.tar.zst
nixpkgs-bf83782d467b65e47e3b027a6451c09abdf7b1de.zip
onionshare: 2.3.2 -> 2.3.3
Diffstat (limited to 'pkgs/applications/networking/onionshare')
-rw-r--r--pkgs/applications/networking/onionshare/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/applications/networking/onionshare/default.nix b/pkgs/applications/networking/onionshare/default.nix
index 529b871d20c..f80fb3a7395 100644
--- a/pkgs/applications/networking/onionshare/default.nix
+++ b/pkgs/applications/networking/onionshare/default.nix
@@ -23,12 +23,12 @@
 }:
 
 let
-  version = "2.3.2";
+  version = "2.3.3";
   src = fetchFromGitHub {
     owner = "micahflee";
     repo = "onionshare";
     rev = "v${version}";
-    sha256 = "sha256-mzLDvvpO82iGDnzY42wx1KCNmAxUgVhpaDVprtb+YOI=";
+    sha256 = "sha256-wU2020RNXlwJ2y9uzcLxIX4EECev1Z9YvNyiBalLj/Y=";
   };
   meta = with lib; {
     description = "Securely and anonymously send and receive files";
@@ -94,6 +94,11 @@ in rec {
       # Tests use the home directory
       export HOME="$(mktemp -d)"
     '';
+
+    disabledTests = [
+      "test_firefox_like_behavior"
+      "test_if_unmodified_since"
+    ];
   };
 
   onionshare-gui = buildPythonApplication {