diff --git a/pkgs/applications/networking/soulseek/nicotine-plus/default.nix b/pkgs/applications/networking/soulseek/nicotine-plus/default.nix index fbf742c5e2a2..483d13b68950 100644 --- a/pkgs/applications/networking/soulseek/nicotine-plus/default.nix +++ b/pkgs/applications/networking/soulseek/nicotine-plus/default.nix @@ -5,13 +5,13 @@ with lib; python3Packages.buildPythonApplication rec { pname = "nicotine-plus"; - version = "3.0.6"; + version = "3.1.1"; src = fetchFromGitHub { owner = "Nicotine-Plus"; repo = "nicotine-plus"; rev = version; - sha256 = "sha256-NL6TXFRB7OeqNEfdANkEqh+MCOF1+ehR+6RO1XsIix8="; + hash = "sha256-NfI2RfxAYhA1qefml1ayfYWjbkrzUL4l9p2Rm/ROnzQ="; }; nativeBuildInputs = [ gettext wrapGAppsHook ]; @@ -21,8 +21,6 @@ python3Packages.buildPythonApplication rec { postInstall = '' mv $out/bin/nicotine $out/bin/nicotine-plus - substituteInPlace $out/share/applications/org.nicotine_plus.Nicotine.desktop \ - --replace "Exec=nicotine" "Exec=$out/bin/nicotine-plus" ''; doCheck = false;