depot/third_party/nixpkgs/pkgs/applications/misc/tipp10/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

26 lines
713 B
Nix

{ stdenv, cmake, lib, fetchFromGitLab,
qtmultimedia, qttools, wrapQtAppsHook, ... }:
stdenv.mkDerivation rec {
pname = "tipp10";
version = "3.3.2";
src = fetchFromGitLab {
owner = "tipp10";
repo = "tipp10";
rev = "v${version}";
hash = "sha256-e0sWH4pT7ej9XGK/Sg9XMX2bMqcXqtSaYI7KBZTXvp4=";
};
nativeBuildInputs = [ cmake qttools wrapQtAppsHook ];
buildInputs = [ qtmultimedia ];
meta = {
description = "Learn and train typing with the ten-finger system";
mainProgram = "tipp10";
homepage = "https://gitlab.com/tipp10/tipp10";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ sigmanificient ];
platforms = lib.platforms.all;
};
}