2021-02-05 17:12:51 +00:00
|
|
|
{ cmake, lib, mkDerivation, fetchFromGitLab,
|
2020-04-24 23:36:52 +00:00
|
|
|
qtmultimedia, qttools, ... }:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "tipp10";
|
2021-03-12 07:09:13 +00:00
|
|
|
version = "3.2.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
2020-07-18 16:06:22 +00:00
|
|
|
owner = "tipp10";
|
2020-09-25 04:45:31 +00:00
|
|
|
repo = "tipp10";
|
2021-03-12 07:09:13 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "4cxN2AnvYhZAMuA/qfmdLVICJNk6VCpRnfelbxYRvPg=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake qttools ];
|
|
|
|
buildInputs = [ qtmultimedia ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Learn and train typing with the ten-finger system";
|
2021-03-12 07:09:13 +00:00
|
|
|
homepage = "https://gitlab.com/tipp10/tipp10";
|
|
|
|
license = licenses.gpl2Only;
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|