torrential: 2.0.1 -> 3.0.0

https://github.com/davidmhewitt/torrential/compare/2.0.1...3.0.0

+12 -8
+12 -8
pkgs/applications/networking/p2p/torrential/default.nix
··· 1 - { lib, stdenv 2 , fetchFromGitHub 3 , nix-update-script 4 , desktop-file-utils ··· 7 , pkg-config 8 , python3 9 , vala 10 - , wrapGAppsHook 11 , curl 12 , dht 13 , glib 14 - , gtk3 15 , libb64 16 , libevent 17 , libgee ··· 25 26 stdenv.mkDerivation rec { 27 pname = "torrential"; 28 - version = "2.0.1"; 29 30 src = fetchFromGitHub { 31 owner = "davidmhewitt"; 32 repo = "torrential"; 33 rev = version; 34 - sha256 = "sha256-W9Is6l8y5XSlPER2BLlf+cyMPPdEQuaP4xM59VhfDE0="; 35 }; 36 37 nativeBuildInputs = [ ··· 41 pkg-config 42 python3 43 vala 44 - wrapGAppsHook 45 ]; 46 47 buildInputs = [ 48 curl 49 dht 50 glib 51 - gtk3 52 libb64 53 libevent 54 libgee ··· 57 libutp 58 miniupnpc 59 openssl 60 - pantheon.granite 61 ]; 62 63 postPatch = '' 64 chmod +x meson/post_install.py 65 patchShebangs meson/post_install.py 66 ''; 67 68 passthru = {
··· 1 + { stdenv 2 + , lib 3 , fetchFromGitHub 4 , nix-update-script 5 , desktop-file-utils ··· 8 , pkg-config 9 , python3 10 , vala 11 + , wrapGAppsHook4 12 , curl 13 , dht 14 , glib 15 + , gtk4 16 , libb64 17 , libevent 18 , libgee ··· 26 27 stdenv.mkDerivation rec { 28 pname = "torrential"; 29 + version = "3.0.0"; 30 31 src = fetchFromGitHub { 32 owner = "davidmhewitt"; 33 repo = "torrential"; 34 rev = version; 35 + sha256 = "sha256-uHc/VNtbhetmGyuhynZH1TvxJscVX17eWO6dzX6Ft3A="; 36 }; 37 38 nativeBuildInputs = [ ··· 42 pkg-config 43 python3 44 vala 45 + wrapGAppsHook4 46 ]; 47 48 buildInputs = [ 49 curl 50 dht 51 glib 52 + gtk4 53 libb64 54 libevent 55 libgee ··· 58 libutp 59 miniupnpc 60 openssl 61 + pantheon.granite7 62 ]; 63 64 postPatch = '' 65 chmod +x meson/post_install.py 66 patchShebangs meson/post_install.py 67 + 68 + substituteInPlace meson/post_install.py \ 69 + --replace "gtk-update-icon-cache" "gtk4-update-icon-cache" 70 ''; 71 72 passthru = {