aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/misc/tipp10/default.nix
blob: 689c5aa3a9ef6925111a929d8a021f38b9104c79 (plain)
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, stdenv, 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 stdenv.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;
  };
}