2024-06-05 15:53:02 +00:00
|
|
|
{ stdenv, cmake, lib, fetchFromGitLab,
|
|
|
|
qtmultimedia, qttools, wrapQtAppsHook, ... }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "tipp10";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "3.3.2";
|
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}";
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-e0sWH4pT7ej9XGK/Sg9XMX2bMqcXqtSaYI7KBZTXvp4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeBuildInputs = [ cmake qttools wrapQtAppsHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ qtmultimedia ];
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
meta = {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Learn and train typing with the ten-finger system";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "tipp10";
|
2021-03-12 07:09:13 +00:00
|
|
|
homepage = "https://gitlab.com/tipp10/tipp10";
|
2024-07-27 06:49:29 +00:00
|
|
|
license = lib.licenses.gpl2Only;
|
|
|
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
|
|
|
platforms = lib.platforms.all;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|