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.
This commit is contained in:
Daniel McCarney 2022-05-15 09:57:13 -04:00
parent db5b502275
commit 8a073a3b7f
No known key found for this signature in database
GPG Key ID: 08FB2BFC470E75B4

View File

@ -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;
};
}