nixpkgs/pkgs/games/cl-wordle/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
593 B
Nix
Raw Normal View History

2022-02-06 19:23:08 +00:00
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "cl-wordle";
2022-02-15 16:18:03 +00:00
version = "0.4.0";
2022-02-06 19:23:08 +00:00
src = fetchCrate {
inherit pname version;
2022-02-15 16:18:03 +00:00
sha256 = "sha256-z2XpXgOviBRcberwpxQ4ml1T04k5kMhG7wA0PAYWENg=";
2022-02-06 19:23:08 +00:00
};
2022-02-15 16:18:03 +00:00
cargoSha256 = "sha256-C7UMkhgez2CtddftARlwN1TjZ1N26NnZfpRiX1KkMEA=";
2022-02-06 19:23:08 +00:00
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";
};
}