about summary refs log tree commit diff
path: root/pkgs/applications/misc/tipp10
diff options
context:
space:
mode:
authorMilan Pässler <mil@nyantec.com>2019-12-14 20:41:37 +0100
committerTrolli Schmittlauch <t.schmittlauch+nixos@orlives.de>2020-02-11 17:36:22 +0100
commit7fbc860d723dc46ba639f51e8b3ac67c0e5d016e (patch)
treeb70eecd7eee9fdf8412214c1e09bef980a211e5b /pkgs/applications/misc/tipp10
parentdd7f6b0c6b461dbc69c1b11ebcf1c8ea5b6160ec (diff)
tipp10: init at 3.1.0
Diffstat (limited to 'pkgs/applications/misc/tipp10')
-rw-r--r--pkgs/applications/misc/tipp10/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/misc/tipp10/default.nix b/pkgs/applications/misc/tipp10/default.nix
new file mode 100644
index 0000000000000..8316fd918ab13
--- /dev/null
+++ b/pkgs/applications/misc/tipp10/default.nix
@@ -0,0 +1,25 @@
+{ cmake, stdenv, mkDerivation, fetchFromGitLab,
+  qtmultimedia, qttools, ... }:
+
+mkDerivation rec {
+  pname = "tipp10";
+  version = "3.1.0";
+
+  src = fetchFromGitLab {
+    owner = "a_a";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1mksga1zyqz1y2s524nkw86irg36zpjwz7ff87n2ygrlysczvnx1";
+  };
+
+  nativeBuildInputs = [ cmake qttools ];
+  buildInputs = [ qtmultimedia ];
+
+  meta = with stdenv.lib; {
+    description = "Learn and train typing with the ten-finger system";
+    homepage = "https://gitlab.com/a_a/tipp10";
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ petabyteboy ];
+    platforms = platforms.all;
+  };
+}