cl-wordle: 0.4.0 -> 0.5.0

This commit is contained in:
lom 2022-05-17 07:35:55 -06:00
parent 1c802f3bfa
commit 1f02ea4ccc

View File

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