evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ch / chess-tui / package.nix
blobe2c4f5fe1edbe2cf812ba48c0fef4e5ab46a69b7
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "chess-tui";
8   version = "1.2.1";
10   src = fetchFromGitHub {
11     owner = "thomas-mauran";
12     repo = "chess-tui";
13     rev = "${version}";
14     hash = "sha256-LtxaZ/7p/lqStoUmckVVaegQp02Ci3L46fMFEgledj4=";
15   };
17   cargoHash = "sha256-RUnT5b9pBcopTPT/1J48xZ4pfn3C0mIuYTDvgf3zvn0=";
19   meta = with lib;{
20     description = "Chess TUI implementation in rust";
21     homepage = "https://github.com/thomas-mauran/chess-tui";
22     maintainers = with maintainers; [ ByteSudoer ];
23     license = licenses.mit;
24     mainProgram = "chess-tui";
25   };