Added typespeed package.

This commit is contained in:
Jonathan Glines 2014-06-02 20:41:35 -06:00
parent 8ad1a0ceaf
commit bb82a4d171
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,2 @@
source $stdenv/setup
genericBuild

View File

@ -0,0 +1,12 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "typespeed-0.6.5";
builder = ./builder.sh;
buildInputs = [ ncurses ];
configureFlags = "--with-highscoredir=/tmp";
src = fetchurl {
url = http://typespeed.sourceforge.net/typespeed-0.6.5.tar.gz;
sha256 = "5c860385ceed8a60f13217cc0192c4c2b4705c3e80f9866f7d72ff306eb72961";
};
}