rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / applications / misc / tipp10 / default.nix
blob090d192b5240e0380101410ce1bda73d1a429265
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     mainProgram = "tipp10";
21     homepage = "https://gitlab.com/tipp10/tipp10";
22     license = licenses.gpl2Only;
23     maintainers = with maintainers; [ sigmanificient ];
24     platforms = platforms.all;
25   };