gtypist, typing tutor
Now all I need is time to practise :) svn path=/nixpkgs/trunk/; revision=33228
This commit is contained in:
parent
9365291276
commit
54a5f7f328
2 changed files with 25 additions and 0 deletions
23
pkgs/games/gtypist/default.nix
Normal file
23
pkgs/games/gtypist/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{stdenv, fetchurl, ncurses}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gtypist-2.9.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.gnu.org/gnu/gtypist/gtypist-2.9.1.tar.xz";
|
||||
sha256 = "1yv209aih1ixbs477vzzk1xj013g6w32vi33g0hldfzvfxbl9y5s";
|
||||
};
|
||||
|
||||
buildInputs = [ncurses];
|
||||
|
||||
patches = [ (fetchurl {
|
||||
url = "http://projects.archlinux.org/svntogit/community.git/plain/trunk/ncurses.patch?h=packages/gtypist";
|
||||
sha256 = "1chdr4xkm140cjwv1n3ydk04qdwgycd12d9adz2sjc58lybqp7sy";
|
||||
})];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/gtypist;
|
||||
description = "GNU Typist (also called gtypist) is a universal typing tutor.";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
};
|
||||
}
|
|
@ -7703,6 +7703,8 @@ let
|
|||
inherit (gnome) gnomedocutils;
|
||||
};
|
||||
|
||||
gtypist = callPackage ../games/gtypist { };
|
||||
|
||||
hexen = callPackage ../games/hexen { };
|
||||
|
||||
icbm3d = callPackage ../games/icbm3d { };
|
||||
|
|
Loading…
Reference in a new issue