sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / games / qgo / default.nix
blob6493dff2d3c114b1f0374db881b3ce909f30c5ec
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     mainProgram = "qgo";
17     longDescription = ''
18       qGo is a Go Client based on Qt 5. It supports playing online at
19       IGS-compatible servers (including some special tweaks for WING and LGS,
20       also NNGS was reported to work) and locally against gnugo (or other
21       GTP-compliant engines). It also has rudimentary support for editing SGF
22       files and parital support for CyberORO/WBaduk, Tygem, Tom, and eWeiqi
23       (developers of these backends are currently inactive, everybody is welcome
24       to take them over).
26       Go is an ancient Chinese board game. It's called "圍棋(Wei Qi)" in
27       Chinese, "囲碁(Yi Go)" in Japanese, "바둑(Baduk)" in Korean.
28     '';
29     homepage = "https://github.com/pzorin/qgo";
30     license = licenses.gpl2;
31     maintainers = with maintainers; [ zalakain ];
32   };
34   src = fetchFromGitHub {
35     owner = "pzorin";
36     repo = "qgo";
37     rev = "bef526dda4c79686edd95c88cc68de24f716703c";
38     sha256 = "1xzkayclmhsi07p9mnbf8185jw8n5ikxp2mik3x8qz1i6rmrfl5b";
39   };
41   patches = [ ./fix-paths.patch ];
42   postPatch = ''
43     sed -i 's|@out@|'"''${out}"'|g' src/src.pro src/defines.h
44   '';
45   nativeBuildInputs = [ qmake qttools ];
46   buildInputs = [ qtbase qtmultimedia ];