python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / tipp10 / default.nix
blob76ea8fb7fc0ef1d4abd49b399b240be4d6a1a393
1 { cmake, lib, mkDerivation, fetchFromGitLab,
2   qtmultimedia, qttools, ... }:
4 mkDerivation rec {
5   pname = "tipp10";
6   version = "3.2.1";
8   src = fetchFromGitLab {
9     owner = "tipp10";
10     repo = "tipp10";
11     rev = "v${version}";
12     sha256 = "4cxN2AnvYhZAMuA/qfmdLVICJNk6VCpRnfelbxYRvPg=";
13   };
15   nativeBuildInputs = [ cmake qttools ];
16   buildInputs = [ qtmultimedia ];
18   meta = with lib; {
19     description = "Learn and train typing with the ten-finger system";
20     homepage = "https://gitlab.com/tipp10/tipp10";
21     license = licenses.gpl2Only;
22     maintainers = with maintainers; [ ];
23     platforms = platforms.all;
24   };