python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / cockatrice / default.nix
blob1388d830a9e7d84a54b1be56dd090e34642893c9
1 { lib, fetchFromGitHub, mkDerivation, cmake, protobuf
2 , qtbase, qtmultimedia, qttools, qtwebsockets, wrapQtAppsHook
3 }:
5 mkDerivation rec {
6   pname = "cockatrice";
7   version = "2021-02-03-Development-2.8.1-beta";
9   src = fetchFromGitHub {
10     owner = "Cockatrice";
11     repo = "Cockatrice";
12     rev = version;
13     sha256 = "0g1d7zq4lh4jf08mvvgp6m2r2gdvy4y1mhf46c0s8607h2l8vavh";
14   };
16   buildInputs = [
17      qtbase qtmultimedia protobuf qttools qtwebsockets
18   ];
20   nativeBuildInputs = [ cmake wrapQtAppsHook ];
22   meta = {
23     homepage = "https://github.com/Cockatrice/Cockatrice";
24     description = "A cross-platform virtual tabletop for multiplayer card games";
25     license = lib.licenses.gpl2Plus;
26     maintainers = with lib.maintainers; [ evanjs ];
27     platforms = with lib.platforms; linux;
28   };