wrapFirefox: quote the makeWrapperArgs Bash array (#375122)
[NixPkgs.git] / pkgs / applications / misc / tipp10 / default.nix
blob29f1591b9fc85181be40c7f15f6c9b0a9764f19e
2   stdenv,
3   cmake,
4   lib,
5   fetchFromGitLab,
6   qtmultimedia,
7   qttools,
8   qtwayland,
9   wrapQtAppsHook,
10   ...
13 stdenv.mkDerivation rec {
14   pname = "tipp10";
15   version = "3.3.2";
17   src = fetchFromGitLab {
18     owner = "tipp10";
19     repo = "tipp10";
20     rev = "v${version}";
21     hash = "sha256-e0sWH4pT7ej9XGK/Sg9XMX2bMqcXqtSaYI7KBZTXvp4=";
22   };
24   nativeBuildInputs = [
25     cmake
26     qttools
27     wrapQtAppsHook
28   ];
29   buildInputs = [
30     qtmultimedia
31     qtwayland
32   ];
34   meta = {
35     description = "Learn and train typing with the ten-finger system";
36     mainProgram = "tipp10";
37     homepage = "https://gitlab.com/tipp10/tipp10";
38     license = lib.licenses.gpl2Only;
39     maintainers = with lib.maintainers; [ sigmanificient ];
40     platforms = lib.platforms.all;
41   };