2021-01-25 08:26:54 +00:00
|
|
|
{ cmake, lib, mkDerivation, fetchFromGitLab,
|
2019-12-14 19:41:37 +00:00
|
|
|
qtmultimedia, qttools, ... }:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "tipp10";
|
2021-03-10 13:33:26 +00:00
|
|
|
version = "3.2.1";
|
2019-12-14 19:41:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
2020-07-11 18:01:19 +01:00
|
|
|
owner = "tipp10";
|
2020-07-25 06:04:00 +01:00
|
|
|
repo = "tipp10";
|
2021-03-10 13:33:26 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "4cxN2AnvYhZAMuA/qfmdLVICJNk6VCpRnfelbxYRvPg=";
|
2019-12-14 19:41:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake qttools ];
|
|
|
|
buildInputs = [ qtmultimedia ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-12-14 19:41:37 +00:00
|
|
|
description = "Learn and train typing with the ten-finger system";
|
2021-03-10 13:33:26 +00:00
|
|
|
homepage = "https://gitlab.com/tipp10/tipp10";
|
|
|
|
license = licenses.gpl2Only;
|
2019-12-14 19:41:37 +00:00
|
|
|
maintainers = with maintainers; [ petabyteboy ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|