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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
659 B
Nix
Raw Normal View History

{ cmake, lib, mkDerivation, fetchFromGitLab,
2019-12-14 19:41:37 +00:00
qtmultimedia, qttools, ... }:
mkDerivation rec {
pname = "tipp10";
2021-03-10 13:33:26 +00:00
version = "3.2.1";
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";
2021-03-10 13:33:26 +00:00
rev = "v${version}";
sha256 = "4cxN2AnvYhZAMuA/qfmdLVICJNk6VCpRnfelbxYRvPg=";
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";
mainProgram = "tipp10";
2021-03-10 13:33:26 +00:00
homepage = "https://gitlab.com/tipp10/tipp10";
license = licenses.gpl2Only;
maintainers = with maintainers; [ ];
2019-12-14 19:41:37 +00:00
platforms = platforms.all;
};
}