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

26 lines
685 B
Nix
Raw Normal View History

{ cmake, lib, mkDerivation, fetchFromGitLab,
2019-12-14 19:41:37 +00:00
qtmultimedia, qttools, ... }:
mkDerivation rec {
pname = "tipp10";
2020-07-25 05:04:00 +00:00
version = "unstable-20200616";
2019-12-14 19:41:37 +00:00
src = fetchFromGitLab {
2020-07-11 17:01:19 +00:00
owner = "tipp10";
2020-07-25 05:04:00 +00:00
repo = "tipp10";
rev = "2dd6d45c8a91cff7075675d8875721456cdd5f1b";
sha256 = "16x51rv4r6cz5vsmrfbakqzbfxy456h82ibzacknp35f41cjdqq4";
2019-12-14 19:41:37 +00:00
};
nativeBuildInputs = [ cmake qttools ];
buildInputs = [ qtmultimedia ];
meta = with lib; {
2019-12-14 19:41:37 +00:00
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;
};
}