mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
cl-wordle: 0.4.0 -> 0.5.0
This commit is contained in:
parent
1c802f3bfa
commit
1f02ea4ccc
@ -1,15 +1,17 @@
|
||||
{ lib, rustPlatform, fetchCrate }:
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cl-wordle";
|
||||
version = "0.4.0";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-z2XpXgOviBRcberwpxQ4ml1T04k5kMhG7wA0PAYWENg=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "conradludgate";
|
||||
repo = "wordle";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-wFTvzAzboUFQg3fauIwIdRChK7rmLES92jK+8ff1D3s=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-C7UMkhgez2CtddftARlwN1TjZ1N26NnZfpRiX1KkMEA=";
|
||||
cargoSha256 = "sha256-PtJbLpAUH44alupFY6wX++t/QsKknn5bXvnXzdYsd9o=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wordle TUI in Rust";
|
||||
|
Loading…
Reference in New Issue
Block a user