gtypist: 2.9.5 -> 2.10.1 (#402836)
This commit is contained in:
@@ -9,18 +9,19 @@
|
||||
fortune,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "gtypist";
|
||||
version = "2.9.5";
|
||||
version = "2.10.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/gtypist/gtypist-${version}.tar.xz";
|
||||
sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1";
|
||||
url = "mirror://gnu/gtypist/gtypist-${finalAttrs.version}.tar.xz";
|
||||
hash = "sha256-ymGAVOkfHtXvBD/MQ1ALutcByVnDGETUaI/yKEmsJS0=";
|
||||
};
|
||||
|
||||
CFLAGS = "-std=gnu89";
|
||||
CFLAGS = "-std=gnu99";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
buildInputs = [
|
||||
ncurses
|
||||
perl
|
||||
@@ -32,11 +33,11 @@ stdenv.mkDerivation rec {
|
||||
--prefix PATH : "${fortune}/bin" \
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
homepage = "https://www.gnu.org/software/gtypist";
|
||||
description = "Universal typing tutor";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||
maintainers = with lib.maintainers; [ pSub ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user