From 78d9b5fb1a668f202e167ef44c8e125c53b1e88d Mon Sep 17 00:00:00 2001 From: Dmitry Bogatov Date: Wed, 7 Oct 2020 02:00:23 -0400 Subject: psftools: init at 1.0.13 --- pkgs/os-specific/linux/psftools/default.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/os-specific/linux/psftools/default.nix (limited to 'pkgs/os-specific/linux/psftools') diff --git a/pkgs/os-specific/linux/psftools/default.nix b/pkgs/os-specific/linux/psftools/default.nix new file mode 100644 index 00000000000..a71e7ef0dcc --- /dev/null +++ b/pkgs/os-specific/linux/psftools/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl }: +stdenv.mkDerivation rec { + pname = "psftools"; + version = "1.0.13"; + src = fetchurl { + url = "https://www.seasip.info/Unix/PSF/${pname}-${version}.tar.gz"; + sha256 = "0rgg1lhryqi6sgm4afhw0z6pjivdw4hyhpxanj8rabyabn4fcqcw"; + }; + outputs = ["out" "man" "dev" "lib"]; + + meta = with stdenv.lib; { + homepage = "https://www.seasip.info/Unix/PSF"; + description = "Conversion tools for .PSF fonts"; + longDescription = '' + The PSFTOOLS are designed to manipulate fixed-width bitmap fonts, + such as DOS or Linux console fonts. Both the PSF1 (8 pixels wide) + and PSF2 (any width) formats are supported; the default output + format is PSF2. + ''; + platforms = platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ kaction ]; + }; +} -- cgit 1.4.1