mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #79848 from schmittlauch/tipp10
tipp10: init at 3.1.0
This commit is contained in:
commit
019ad4ab4e
25
pkgs/applications/misc/tipp10/default.nix
Normal file
25
pkgs/applications/misc/tipp10/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ cmake, stdenv, mkDerivation, fetchFromGitLab,
|
||||
qtmultimedia, qttools, ... }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "tipp10";
|
||||
version = "3.1.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "a_a";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1mksga1zyqz1y2s524nkw86irg36zpjwz7ff87n2ygrlysczvnx1";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -21727,6 +21727,8 @@ in
|
||||
|
||||
tiny = callPackage ../applications/networking/irc/tiny { };
|
||||
|
||||
tipp10 = qt5.callPackage ../applications/misc/tipp10 { };
|
||||
|
||||
tixati = callPackage ../applications/networking/p2p/tixati { };
|
||||
|
||||
tkcvs = callPackage ../applications/version-management/tkcvs { };
|
||||
|
Loading…
Reference in New Issue
Block a user