skim: 0.15.7 -> 0.16.0 (#376410)
[NixPkgs.git] / pkgs / by-name / ch / chess-tui / package.nix
blob9dee8dd57e3f883d368c2f2dbcf96b8f816eab8b
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "chess-tui";
9   version = "1.2.1";
11   src = fetchFromGitHub {
12     owner = "thomas-mauran";
13     repo = "chess-tui";
14     rev = "${version}";
15     hash = "sha256-LtxaZ/7p/lqStoUmckVVaegQp02Ci3L46fMFEgledj4=";
16   };
18   cargoHash = "sha256-RUnT5b9pBcopTPT/1J48xZ4pfn3C0mIuYTDvgf3zvn0=";
20   meta = with lib; {
21     description = "Chess TUI implementation in rust";
22     homepage = "https://github.com/thomas-mauran/chess-tui";
23     maintainers = with maintainers; [ ByteSudoer ];
24     license = licenses.mit;
25     mainProgram = "chess-tui";
26   };