34 lines
865 B
Nix
34 lines
865 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "psftools";
|
|
version = "1.1.3";
|
|
src = fetchurl {
|
|
url = "https://www.seasip.info/Unix/PSF/psftools-${finalAttrs.version}.tar.gz";
|
|
sha256 = "sha256-uiPWgJblAMKpM79L1FrJg4RzJ0D/XenkfUXNTmvq9B8=";
|
|
};
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
"dev"
|
|
"lib"
|
|
];
|
|
|
|
meta = {
|
|
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 = lib.platforms.unix;
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ kaction ];
|
|
};
|
|
})
|