mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Added typespeed package.
This commit is contained in:
parent
8ad1a0ceaf
commit
bb82a4d171
2
pkgs/games/typespeed/builder.sh
Normal file
2
pkgs/games/typespeed/builder.sh
Normal file
@ -0,0 +1,2 @@
|
||||
source $stdenv/setup
|
||||
genericBuild
|
12
pkgs/games/typespeed/default.nix
Normal file
12
pkgs/games/typespeed/default.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user