summary refs log tree commit diff
path: root/pkgs/applications/misc/tipp10/default.nix
blob: 3333760a759a3fd44f28a4df1e293be5add0a51c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ cmake, lib, mkDerivation, fetchFromGitLab,
  qtmultimedia, qttools, ... }:

mkDerivation rec {
  pname = "tipp10";
  version = "unstable-20200616";

  src = fetchFromGitLab {
    owner = "tipp10";
    repo = "tipp10";
    rev = "2dd6d45c8a91cff7075675d8875721456cdd5f1b";
    sha256 = "16x51rv4r6cz5vsmrfbakqzbfxy456h82ibzacknp35f41cjdqq4";
  };

  nativeBuildInputs = [ cmake qttools ];
  buildInputs = [ qtmultimedia ];

  meta = with lib; {
    description = "Learn and train typing with the ten-finger system";
    homepage = "https://gitlab.com/a_a/tipp10";
    license = licenses.gpl2;
    maintainers = with maintainers; [ petabyteboy ];
    platforms = platforms.all;
  };
}