Merge pull request #173399 from legendofmiracles/update/wordle
cl-wordle: 0.4.0 -> 0.5.0
This commit is contained in:
commit
5e19ce7a9b
1 changed files with 8 additions and 6 deletions
|
@ -1,15 +1,17 @@
|
||||||
{ lib, rustPlatform, fetchCrate }:
|
{ lib, rustPlatform, fetchFromGitHub }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cl-wordle";
|
pname = "cl-wordle";
|
||||||
version = "0.4.0";
|
version = "0.5.0";
|
||||||
|
|
||||||
src = fetchCrate {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "conradludgate";
|
||||||
sha256 = "sha256-z2XpXgOviBRcberwpxQ4ml1T04k5kMhG7wA0PAYWENg=";
|
repo = "wordle";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-wFTvzAzboUFQg3fauIwIdRChK7rmLES92jK+8ff1D3s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-C7UMkhgez2CtddftARlwN1TjZ1N26NnZfpRiX1KkMEA=";
|
cargoSha256 = "sha256-PtJbLpAUH44alupFY6wX++t/QsKknn5bXvnXzdYsd9o=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Wordle TUI in Rust";
|
description = "Wordle TUI in Rust";
|
||||||
|
|
Loading…
Reference in a new issue