nixpkgs/pkgs/applications/misc/tipp10/default.nix

26 lines
651 B
Nix
Raw Normal View History

2019-12-14 19:41:37 +00:00
{ cmake, stdenv, mkDerivation, fetchFromGitLab,
qtmultimedia, qttools, ... }:
mkDerivation rec {
pname = "tipp10";
2020-07-11 18:01:19 +01:00
version = "3.2.0";
2019-12-14 19:41:37 +00:00
src = fetchFromGitLab {
2020-07-11 18:01:19 +01:00
owner = "tipp10";
2019-12-14 19:41:37 +00:00
repo = pname;
rev = "v${version}";
2020-07-11 18:01:19 +01:00
sha256 = "0fav5jlw6lw78iqrj7a65b8vd50hhyyaqyzmfrvyxirpsqhjk1v7";
2019-12-14 19:41:37 +00:00
};
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;
};
}