2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchurl, makeWrapper, libiconv, ncurses, perl, fortune}:
|
2012-03-18 08:11:17 +00:00
|
|
|
|
2014-09-08 16:36:42 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gtypist";
|
2014-09-08 16:36:42 +01:00
|
|
|
version = "2.9.5";
|
2012-03-18 08:11:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-08 16:36:42 +01:00
|
|
|
url = "mirror://gnu/gtypist/gtypist-${version}.tar.xz";
|
|
|
|
sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1";
|
2012-03-18 08:11:17 +00:00
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ ncurses perl fortune ]
|
2021-01-15 04:31:39 +00:00
|
|
|
++ lib.optional stdenv.isDarwin libiconv;
|
2012-03-18 08:11:17 +00:00
|
|
|
|
2014-09-08 16:36:42 +01:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/bin/typefortune" \
|
|
|
|
--prefix PATH : "${fortune}/bin" \
|
|
|
|
'';
|
2012-03-18 08:11:17 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/gtypist";
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Universal typing tutor";
|
2014-09-08 16:36:42 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2016-06-04 16:14:47 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2014-09-08 16:36:42 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-03-18 08:11:17 +00:00
|
|
|
};
|
|
|
|
}
|