diff --git a/pkgs/by-name/fu/fum/package.nix b/pkgs/by-name/fu/fum/package.nix index 96d24f6623949..5cc46efe20fce 100644 --- a/pkgs/by-name/fu/fum/package.nix +++ b/pkgs/by-name/fu/fum/package.nix @@ -3,25 +3,25 @@ rustPlatform, fetchFromGitHub, autoPatchelfHook, - stdenv, openssl, dbus, pkg-config, libgcc, + nix-update-script, }: rustPlatform.buildRustPackage rec { pname = "fum"; - version = "0.6.4"; + version = "0.9.17"; src = fetchFromGitHub { owner = "qxb3"; repo = "fum"; tag = "v${version}"; - hash = "sha256-vBn76s2ewLVVYhyXviQUmq+AzH6FSVdJaTEJQ2EPlM0="; + hash = "sha256-E9Z8bs5bdNcXHRJIkzcISIz8R1wnZu8sO6tXQp+5bpQ="; }; useFetchCargoVendor = true; - cargoHash = "sha256-7h/KIAIxldXPXUo0lzuBqs6Uf5S5p39yV+kTfLe/LBo="; + cargoHash = "sha256-yrDukkbbXqS2iAdtY4WZS6VkqSbyeBXWkn2Od4+mWLw="; nativeBuildInputs = [ autoPatchelfHook @@ -36,9 +36,12 @@ rustPlatform.buildRustPackage rec { doCheck = false; + passthru.updateScript = nix-update-script { }; + meta = { description = "Fully ricable tui-based music client"; homepage = "https://github.com/qxb3/fum"; + changelog = "https://github.com/qxb3/fum/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ linuxmobile ]; platforms = lib.platforms.linux;