nixpkgs/pkgs/applications/networking/onionshare/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

150 lines
3.4 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, buildPythonApplication
, substituteAll
, fetchFromGitHub
, isPy3k
, colorama
, flask
, flask-httpauth
, flask-socketio
2022-01-18 10:04:53 +01:00
, cepa
, psutil
, pyqt5
, pycrypto
, pynacl
, pyside2
2022-06-20 12:19:26 +02:00
, pysocks
, pytestCheckHook
, qrcode
, qt5
, requests
, unidecode
, tor
, obfs4
2022-01-18 10:04:53 +01:00
, snowflake
2020-04-21 22:57:48 +02:00
}:
let
2022-01-18 10:04:53 +01:00
version = "2.5";
2020-04-21 22:57:48 +02:00
src = fetchFromGitHub {
owner = "onionshare";
2020-04-21 22:57:48 +02:00
repo = "onionshare";
rev = "v${version}";
2022-01-18 10:04:53 +01:00
sha256 = "xCAM+tjjyDg/gqAXr4YNPhM8R3n9r895jktisAGlpZo=";
2020-04-21 22:57:48 +02:00
};
meta = with lib; {
description = "Securely and anonymously send and receive files";
longDescription = ''
OnionShare is an open source tool for securely and anonymously sending
and receiving files using Tor onion services. It works by starting a web
server directly on your computer and making it accessible as an
unguessable Tor web address that others can load in Tor Browser to
download files from you, or upload files to you. It doesn't require
setting up a separate server, using a third party file-sharing service,
or even logging into an account.
Unlike services like email, Google Drive, DropBox, WeTransfer, or nearly
any other way people typically send files to each other, when you use
OnionShare you don't give any companies access to the files that you're
sharing. So long as you share the unguessable web address in a secure way
(like pasting it in an encrypted messaging app), no one but you and the
person you're sharing with can access the files.
2020-04-21 22:57:48 +02:00
'';
homepage = "https://onionshare.org/";
license = licenses.gpl3Plus;
2020-04-22 11:14:38 +02:00
maintainers = with maintainers; [ lourkeur ];
2020-04-21 22:57:48 +02:00
};
2022-01-18 10:04:53 +01:00
# TODO: package meek https://support.torproject.org/glossary/meek/
meek = "/meek-not-available";
2020-04-21 22:57:48 +02:00
in
rec {
2020-11-14 22:43:49 +01:00
onionshare = buildPythonApplication {
2020-12-28 11:19:37 +01:00
pname = "onionshare-cli";
2020-11-14 22:43:49 +01:00
inherit version meta;
src = "${src}/cli";
patches = [
# hardcode store paths of dependencies
(substituteAll {
src = ./fix-paths.patch;
2022-01-18 10:04:53 +01:00
inherit tor meek obfs4 snowflake;
2020-11-14 22:43:49 +01:00
inherit (tor) geoip;
})
];
2020-04-21 22:57:48 +02:00
disable = !isPy3k;
propagatedBuildInputs = [
2021-06-02 09:51:09 +02:00
colorama
2020-04-21 22:57:48 +02:00
flask
flask-httpauth
2020-11-14 22:43:49 +01:00
flask-socketio
2022-01-18 10:04:53 +01:00
cepa
2020-11-14 22:43:49 +01:00
psutil
2020-04-21 22:57:48 +02:00
pycrypto
pynacl
2020-04-21 22:57:48 +02:00
requests
2020-11-14 22:43:49 +01:00
unidecode
2020-04-21 22:57:48 +02:00
];
2020-11-14 22:43:49 +01:00
2020-04-21 22:57:48 +02:00
buildInputs = [
tor
obfs4
];
2020-11-14 22:43:49 +01:00
checkInputs = [
pytestCheckHook
];
preCheck = ''
# Tests use the home directory
export HOME="$(mktemp -d)"
'';
2021-08-21 00:41:36 +02:00
disabledTests = [
"test_get_tor_paths_linux" # expects /usr instead of /nix/store
] ++ lib.optionals stdenv.isDarwin [
# on darwin (and only on darwin) onionshare attempts to discover
# user's *real* homedir via /etc/passwd, making it more painful
# to fake
"test_receive_mode_webhook"
2021-08-21 00:41:36 +02:00
];
2020-11-14 22:43:49 +01:00
};
onionshare-gui = buildPythonApplication {
2020-12-28 11:19:37 +01:00
pname = "onionshare";
2020-11-14 22:43:49 +01:00
inherit version meta;
2022-01-18 10:04:53 +01:00
src = "${src}/desktop";
2020-04-21 22:57:48 +02:00
patches = [
2020-11-14 22:43:49 +01:00
# hardcode store paths of dependencies
2020-04-21 22:57:48 +02:00
(substituteAll {
2020-11-14 22:43:49 +01:00
src = ./fix-paths-gui.patch;
2022-01-18 10:04:53 +01:00
inherit tor meek obfs4 snowflake;
2020-04-21 22:57:48 +02:00
inherit (tor) geoip;
})
];
2020-11-14 22:43:49 +01:00
disable = !isPy3k;
propagatedBuildInputs = [
onionshare
pyqt5
pyside2
psutil
qrcode
2022-06-20 12:19:26 +02:00
pysocks
2020-11-14 22:43:49 +01:00
];
2020-04-21 22:57:48 +02:00
2020-11-14 22:43:49 +01:00
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
2020-04-21 22:57:48 +02:00
2020-11-14 22:43:49 +01:00
preFixup = ''
wrapQtApp $out/bin/onionshare
2020-04-21 22:57:48 +02:00
'';
2020-11-14 22:43:49 +01:00
doCheck = false;
2020-04-21 22:57:48 +02:00
2020-11-14 22:43:49 +01:00
pythonImportsCheck = [ "onionshare" ];
2020-04-21 22:57:48 +02:00
};
}