gtypist: 2.9.5 -> 2.10.1 (#402836)

authored by Pol Dellaiera and committed by GitHub 3bc86d1d ff55f87a

+11 -10
+11 -10
pkgs/by-name/gt/gtypist/package.nix
··· 9 fortune, 10 }: 11 12 - stdenv.mkDerivation rec { 13 pname = "gtypist"; 14 - version = "2.9.5"; 15 16 src = fetchurl { 17 - url = "mirror://gnu/gtypist/gtypist-${version}.tar.xz"; 18 - sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1"; 19 }; 20 21 - CFLAGS = "-std=gnu89"; 22 23 nativeBuildInputs = [ makeWrapper ]; 24 buildInputs = [ 25 ncurses 26 perl ··· 32 --prefix PATH : "${fortune}/bin" \ 33 ''; 34 35 - meta = with lib; { 36 homepage = "https://www.gnu.org/software/gtypist"; 37 description = "Universal typing tutor"; 38 - license = licenses.gpl3Plus; 39 - platforms = platforms.linux ++ platforms.darwin; 40 - maintainers = with maintainers; [ pSub ]; 41 }; 42 - }
··· 9 fortune, 10 }: 11 12 + stdenv.mkDerivation (finalAttrs: { 13 pname = "gtypist"; 14 + version = "2.10.1"; 15 16 src = fetchurl { 17 + url = "mirror://gnu/gtypist/gtypist-${finalAttrs.version}.tar.xz"; 18 + hash = "sha256-ymGAVOkfHtXvBD/MQ1ALutcByVnDGETUaI/yKEmsJS0="; 19 }; 20 21 + CFLAGS = "-std=gnu99"; 22 23 nativeBuildInputs = [ makeWrapper ]; 24 + 25 buildInputs = [ 26 ncurses 27 perl ··· 33 --prefix PATH : "${fortune}/bin" \ 34 ''; 35 36 + meta = { 37 homepage = "https://www.gnu.org/software/gtypist"; 38 description = "Universal typing tutor"; 39 + license = lib.licenses.gpl3Plus; 40 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 41 + maintainers = with lib.maintainers; [ pSub ]; 42 }; 43 + })