depot/third_party/nixpkgs/pkgs/applications/misc/tipp10/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

25 lines
648 B
Nix

{ 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;
};
}