evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / uc / uchess / package.nix
blobfd0884bf6b1846a4b8eece9a0765c0420366c918
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   vendorHash = "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     mainProgram = "uchess";
29     homepage = "https://tmountain.github.io/uchess/";
30     maintainers = with maintainers; [ tmountain ];
31     license = licenses.mit;
32   };