2016-06-04 16:14:47 +01:00
|
|
|
{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
|
|
|
};
|
|
|
|
|
2016-06-04 16:14:47 +01:00
|
|
|
buildInputs = [ makeWrapper ncurses perl fortune ]
|
|
|
|
++ stdenv.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
|
|
|
|
2014-09-08 16:36:42 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-12-01 18:22:13 +00: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
|
|
|
};
|
|
|
|
}
|