Merge pull request #158389 from legendofmiracles/wordle
cl-wordle: init at 0.1.2
This commit is contained in:
commit
1869f7cf93
24
pkgs/games/cl-wordle/default.nix
Normal file
24
pkgs/games/cl-wordle/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, rustPlatform, fetchCrate }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cl-wordle";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-mcPC2Lj+Vsytfl3+ghYn74QRfM6U4dQLUybtCqkjKlk=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-3Ef8gLFWIAYpKdPixvILvDee5Gezh68hc9TR5+zRX0I=";
|
||||
|
||||
patches = [ ./rust-1-57.diff ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wordle TUI in Rust";
|
||||
homepage = "https://github.com/conradludgate/wordle";
|
||||
# repo has no license, but crates.io says it's MIT
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lom ];
|
||||
mainProgram = "wordle";
|
||||
};
|
||||
}
|
13
pkgs/games/cl-wordle/rust-1-57.diff
Normal file
13
pkgs/games/cl-wordle/rust-1-57.diff
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/src/bin/wordle/game.rs b/src/bin/wordle/game.rs
|
||||
index 8500732..6f26e2a 100644
|
||||
--- a/src/bin/wordle/game.rs
|
||||
+++ b/src/bin/wordle/game.rs
|
||||
@@ -235,7 +235,7 @@ impl Display for GameShare {
|
||||
score = self.score
|
||||
)?;
|
||||
for m in &self.matches {
|
||||
- write!(f, "\n{m}")?;
|
||||
+ write!(f, "\n{}", m)?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
@ -29905,6 +29905,8 @@ with pkgs;
|
||||
|
||||
wofi-emoji = callPackage ../applications/misc/wofi-emoji { };
|
||||
|
||||
cl-wordle = callPackage ../games/cl-wordle { };
|
||||
|
||||
wordnet = callPackage ../applications/misc/wordnet {
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user