2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-10-07 07:00:23 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "psftools";
|
2021-12-08 13:02:25 +00:00
|
|
|
version = "1.1.1";
|
2020-10-07 07:00:23 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.seasip.info/Unix/PSF/${pname}-${version}.tar.gz";
|
2021-12-08 13:02:25 +00:00
|
|
|
sha256 = "sha256-MecY4JsIXTgHdkrFkQ+C3fC6OEFRUgjUgf7qxfKeZtM=";
|
2020-10-07 07:00:23 +01:00
|
|
|
};
|
|
|
|
outputs = ["out" "man" "dev" "lib"];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-07 07:00:23 +01:00
|
|
|
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.
|
|
|
|
'';
|
2020-12-09 23:59:05 +00:00
|
|
|
platforms = platforms.unix;
|
2020-10-07 07:00:23 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ kaction ];
|
|
|
|
};
|
|
|
|
}
|