python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / uchess / default.nix
blob58b45609cc4a0ecd6d6931bda321767149071846
1 { lib, buildGoModule, fetchFromGitHub, makeWrapper, stockfish }:
3 buildGoModule rec {
4   pname = "uchess";
5   version = "0.2.1";
7   subPackages = [ "cmd/uchess" ];
9   src = fetchFromGitHub {
10     owner = "tmountain";
11     repo = "uchess";
12     rev = "v${version}";
13     sha256 = "1njl3f41gshdpj431zkvpv2b7zmh4m2m5q6xsijb0c0058dk46mz";
14   };
16   vendorSha256 = "sha256-4yEE1AsSChayCBxaMXPsbls7xGmFeWRhfOMHyAAReDY=";
18   # package does not contain any tests as of v0.2.1
19   doCheck = false;
21   nativeBuildInputs = [ makeWrapper ];
22   postInstall = ''
23     wrapProgram $out/bin/uchess --suffix PATH : ${stockfish}/bin
24   '';
26   meta = with lib; {
27     description = "Play chess against UCI engines in your terminal.";
28     homepage = "https://tmountain.github.io/uchess/";
29     maintainers = with maintainers; [ tmountain ];
30     license = licenses.mit;
31   };