randtype: init at 1.13
This commit is contained in:
parent
78090fd990
commit
7467b025a0
2 changed files with 33 additions and 0 deletions
31
pkgs/games/randtype/default.nix
Normal file
31
pkgs/games/randtype/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchzip, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "randtype";
|
||||
version = "1.13";
|
||||
|
||||
src = fetchzip {
|
||||
url = "mirror://sourceforge/randtype/${pname}-${version}.tar.gz";
|
||||
sha256 = "055xs02qwpgbkn2l57bwghbsrsysg1zhm2asp0byvjpz4sc4w1rd";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/share/man/man1 $out/bin
|
||||
install -cp randtype.1.gz $out/share/man/man1
|
||||
install -cps randtype $out/bin
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "semi-random text typer";
|
||||
homepage = "https://benkibbey.wordpress.com/randtype/";
|
||||
maintainers = with maintainers; [ dandellion ];
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -29526,6 +29526,8 @@ in
|
|||
|
||||
racer = callPackage ../games/racer { };
|
||||
|
||||
randtype = callPackage ../games/randtype { };
|
||||
|
||||
redeclipse = callPackage ../games/redeclipse { };
|
||||
|
||||
residualvm = callPackage ../games/residualvm { };
|
||||
|
|
Loading…
Reference in a new issue