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