From 8a073a3b7ff4bcfeb40903d14cd168f9e61eab10 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Sun, 15 May 2022 09:57:13 -0400 Subject: [PATCH] blightmud: 3.5.0 -> 3.6.2 Updates Blightmud to 3.6.2, this in turn brings in updated dependencies that fix building `blightmud-tts` with modern speechd. This allows removing the broken flag on this package. --- pkgs/games/blightmud/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/games/blightmud/default.nix b/pkgs/games/blightmud/default.nix index 43feb8b7c2a8..f9a453195f74 100644 --- a/pkgs/games/blightmud/default.nix +++ b/pkgs/games/blightmud/default.nix @@ -3,16 +3,16 @@ rustPlatform.buildRustPackage rec { pname = "blightmud"; - version = "3.5.0"; + version = "3.6.2"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "sha256-DaICzwBew90YstV42wiY0IbvR1W4Hm8dzo3xY2qlMGQ="; + sha256 = "sha256-0TFJjOuaixBqpo6gHJynIbVHvI+PxRhwdubIXDcR098="; }; - cargoSha256 = "sha256-BamMTPh+GN9GG4puxyTauPhjCC8heCu1wsgFaw98s9U="; + cargoSha256 = "sha256-jTyXoEC/QBeVbAnv2BspflGP1jA9qH+NPrRAx3x2kEg="; buildFeatures = lib.optional withTTS "tts"; @@ -51,6 +51,7 @@ rustPlatform.buildRustPackage rec { "test_gmcp_negotiation" "test_ttype_negotiation" "test_reconnect" + "test_is_connected" "test_mud" "test_server" "test_lua_script" @@ -75,7 +76,5 @@ rustPlatform.buildRustPackage rec { license = licenses.gpl3Plus; maintainers = with maintainers; [ cpu ]; platforms = platforms.linux; - # See https://github.com/NixOS/nixpkgs/pull/160120 - broken = withTTS; }; }