depot/third_party/nixpkgs/pkgs/applications/misc/tipp10/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

26 lines
659 B
Nix

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