nixpkgs-suyu/pkgs/os-specific/linux/psftools/default.nix

25 lines
820 B
Nix
Raw Normal View History

2020-10-07 08:00:23 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "psftools";
2020-12-09 22:22:47 +01:00
version = "1.0.14";
2020-10-07 08:00:23 +02:00
src = fetchurl {
url = "https://www.seasip.info/Unix/PSF/${pname}-${version}.tar.gz";
2020-12-09 22:22:47 +01:00
sha256 = "17nia5n5rabbh42gz51c8y53rjwddria4j3wvzk8dd0llj7k1y6w";
2020-10-07 08:00:23 +02:00
};
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 ];
};
}