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

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

25 lines
651 B
Nix
Raw Normal View History

2022-05-17 15:35:55 +02:00
{ lib, rustPlatform, fetchFromGitHub }:
2022-02-06 20:23:08 +01:00
rustPlatform.buildRustPackage rec {
pname = "cl-wordle";
2022-05-17 15:35:55 +02:00
version = "0.5.0";
2022-02-06 20:23:08 +01:00
2022-05-17 15:35:55 +02:00
src = fetchFromGitHub {
owner = "conradludgate";
repo = "wordle";
rev = "v${version}";
sha256 = "sha256-wFTvzAzboUFQg3fauIwIdRChK7rmLES92jK+8ff1D3s=";
2022-02-06 20:23:08 +01:00
};
2022-05-17 15:35:55 +02:00
cargoSha256 = "sha256-PtJbLpAUH44alupFY6wX++t/QsKknn5bXvnXzdYsd9o=";
2022-02-06 20:23:08 +01: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";
};
}