Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / qgo / default.nix
blobec7986c6a36bad0636830512a2b5481289ebe1b8
1 { lib
2 , mkDerivation
3 , fetchFromGitHub
4 , qmake
5 , qtbase
6 , qtmultimedia
7 , qttools
8 }:
10 mkDerivation {
11   pname = "qgo";
12   version = "unstable-2017-12-18";
14   meta = with lib; {
15     description = "A Go client based on Qt5";
16     longDescription = ''
17       qGo is a Go Client based on Qt 5. It supports playing online at
18       IGS-compatible servers (including some special tweaks for WING and LGS,
19       also NNGS was reported to work) and locally against gnugo (or other
20       GTP-compliant engines). It also has rudimentary support for editing SGF
21       files and parital support for CyberORO/WBaduk, Tygem, Tom, and eWeiqi
22       (developers of these backends are currently inactive, everybody is welcome
23       to take them over).
25       Go is an ancient Chinese board game. It's called "圍棋(Wei Qi)" in
26       Chinese, "囲碁(Yi Go)" in Japanese, "바둑(Baduk)" in Korean.
27     '';
28     homepage = "https://github.com/pzorin/qgo";
29     license = licenses.gpl2;
30     maintainers = with maintainers; [ zalakain ];
31   };
33   src = fetchFromGitHub {
34     owner = "pzorin";
35     repo = "qgo";
36     rev = "bef526dda4c79686edd95c88cc68de24f716703c";
37     sha256 = "1xzkayclmhsi07p9mnbf8185jw8n5ikxp2mik3x8qz1i6rmrfl5b";
38   };
40   patches = [ ./fix-paths.patch ];
41   postPatch = ''
42     sed -i 's|@out@|'"''${out}"'|g' src/src.pro src/defines.h
43   '';
44   nativeBuildInputs = [ qmake qttools ];
45   buildInputs = [ qtbase qtmultimedia ];