about summary refs log tree commit diff
path: root/pkgs/games/typespeed
diff options
context:
space:
mode:
authorJonathan Glines <auntieNeo@gmail.com>2014-06-08 17:35:56 -0600
committerJonathan Glines <auntieNeo@gmail.com>2014-06-08 17:35:56 -0600
commitc631c23a3ff44e0f978c6a817a2347450b818b9f (patch)
treedb5cf5291176c189e3c44cfbde3fbe14b123bdb7 /pkgs/games/typespeed
parent7386e9f1715b6b92d3699795905dc5b210521848 (diff)
parent8af05e82a024f9427b23f314cd59205126d67bb5 (diff)
downloadnixlib-c631c23a3ff44e0f978c6a817a2347450b818b9f.tar
nixlib-c631c23a3ff44e0f978c6a817a2347450b818b9f.tar.gz
nixlib-c631c23a3ff44e0f978c6a817a2347450b818b9f.tar.bz2
nixlib-c631c23a3ff44e0f978c6a817a2347450b818b9f.tar.lz
nixlib-c631c23a3ff44e0f978c6a817a2347450b818b9f.tar.xz
nixlib-c631c23a3ff44e0f978c6a817a2347450b818b9f.tar.zst
nixlib-c631c23a3ff44e0f978c6a817a2347450b818b9f.zip
Merge branch 'nitrogen' into typespeed
Diffstat (limited to 'pkgs/games/typespeed')
-rw-r--r--pkgs/games/typespeed/builder.sh2
-rw-r--r--pkgs/games/typespeed/default.nix12
2 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/games/typespeed/builder.sh b/pkgs/games/typespeed/builder.sh
new file mode 100644
index 000000000000..273fc55c7552
--- /dev/null
+++ b/pkgs/games/typespeed/builder.sh
@@ -0,0 +1,2 @@
+source $stdenv/setup
+genericBuild
diff --git a/pkgs/games/typespeed/default.nix b/pkgs/games/typespeed/default.nix
new file mode 100644
index 000000000000..8acb4de62b46
--- /dev/null
+++ b/pkgs/games/typespeed/default.nix
@@ -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";
+  };
+}