571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
31 lines
827 B
Nix
31 lines
827 B
Nix
{lib, stdenv, fetchurl, makeWrapper, libiconv, ncurses, perl, fortune}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtypist";
|
|
version = "2.9.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gtypist/gtypist-${version}.tar.xz";
|
|
sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1";
|
|
};
|
|
|
|
CFLAGS = "-std=gnu89";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ ncurses perl fortune ]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin libiconv;
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/typefortune" \
|
|
--prefix PATH : "${fortune}/bin" \
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.gnu.org/software/gtypist";
|
|
description = "Universal typing tutor";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|