onionshare: 2.6.2 -> 2.6.3

Diff: https://github.com/onionshare/onionshare/compare/refs/tags/v2.6.2...refs/tags/v2.6.3

Changelog: https://github.com/onionshare/onionshare/releases/tag/v2.6.3

+3 -30
-17
pkgs/by-name/on/onionshare-gui/package.nix
··· 6 6 obfs4, 7 7 snowflake, 8 8 tor, 9 - fetchpatch, 10 9 qt5, 11 10 }: 12 11 python3Packages.buildPythonApplication rec { ··· 31 30 tor 32 31 ; 33 32 inherit (tor) geoip; 34 - }) 35 - 36 - # https://github.com/onionshare/onionshare/pull/1903 37 - (fetchpatch { 38 - url = "https://github.com/onionshare/onionshare/pull/1903/commits/f20db8fcbd18e51b58814ae8f98f3a7502b4f456.patch"; 39 - stripLen = 1; 40 - hash = "sha256-wfIjdPhdUYAvbK5XyE1o2OtFOlJRj0X5mh7QQRjdyP0="; 41 - }) 42 - 43 - # Remove distutils for Python 3.12 compatibility 44 - # https://github.com/onionshare/onionshare/pull/1907 45 - (fetchpatch { 46 - url = "https://github.com/onionshare/onionshare/commit/1fb1a470df20d8a7576c8cf51213e5928528d59a.patch"; 47 - includes = [ "onionshare/update_checker.py" ]; 48 - stripLen = 1; 49 - hash = "sha256-mRRj9cALZVHw86CgU17sp9EglKhkRRcGfROyQpsXVfU="; 50 33 }) 51 34 ]; 52 35
+3 -13
pkgs/by-name/on/onionshare/package.nix
··· 11 11 snowflake, 12 12 tor, 13 13 14 - fetchpatch, 15 14 versionCheckHook, 16 15 gitUpdater, 17 16 onionshare-gui, ··· 19 18 }: 20 19 python3Packages.buildPythonApplication rec { 21 20 pname = "onionshare-cli"; 22 - version = "2.6.2"; 21 + version = "2.6.3"; 23 22 pyproject = true; 24 23 25 24 src = fetchFromGitHub { 26 25 owner = "onionshare"; 27 26 repo = "onionshare"; 28 27 tag = "v${version}"; 29 - hash = "sha256-J8Hdriy8eWpHuMCI87a9a/zCR6xafM3A/Tkyom0Ktko="; 28 + hash = "sha256-DY5rSHkmiqLIa49gcbq7VfcMM1AMFTJ5FPQtS2kR2Zs="; 30 29 }; 31 30 32 31 sourceRoot = "${src.name}/cli"; ··· 41 40 tor 42 41 ; 43 42 inherit (tor) geoip; 44 - }) 45 - 46 - # Remove distutils for Python 3.12 compatibility 47 - # https://github.com/onionshare/onionshare/pull/1907 48 - (fetchpatch { 49 - url = "https://github.com/onionshare/onionshare/commit/1fb1a470df20d8a7576c8cf51213e5928528d59a.patch"; 50 - includes = [ "onionshare_cli/onion.py" ]; 51 - stripLen = 1; 52 - hash = "sha256-4XkqaEhMhvj6PyMssnLfXRazdP4k+c9mMDveho7pWg8="; 53 43 }) 54 44 ]; 55 45 ··· 143 133 person you're sharing with can access the files. 144 134 ''; 145 135 homepage = "https://onionshare.org/"; 146 - changelog = "https://github.com/onionshare/onionshare/releases/tag/v${version}"; 136 + changelog = "https://github.com/onionshare/onionshare/releases/tag/${src.tag}"; 147 137 license = lib.licenses.gpl3Plus; 148 138 maintainers = with lib.maintainers; [ bbjubjub ]; 149 139 mainProgram = "onionshare-cli";