Merge pull request #132563 from dali99/add_randtype

randtype: init at 1.13
This commit is contained in:
Sandro
2021-08-03 20:48:55 +00:00
committed by GitHub
2 changed files with 33 additions and 0 deletions
+31
View 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;
};
}
+2
View File
@@ -29526,6 +29526,8 @@ in
racer = callPackage ../games/racer { };
randtype = callPackage ../games/randtype { };
redeclipse = callPackage ../games/redeclipse { };
residualvm = callPackage ../games/residualvm { };