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

25 lines
817 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2020-10-07 06:00:23 +00:00
stdenv.mkDerivation rec {
pname = "psftools";
2020-12-09 21:22:47 +00:00
version = "1.0.14";
2020-10-07 06:00:23 +00:00
src = fetchurl {
url = "https://www.seasip.info/Unix/PSF/${pname}-${version}.tar.gz";
2020-12-09 21:22:47 +00:00
sha256 = "17nia5n5rabbh42gz51c8y53rjwddria4j3wvzk8dd0llj7k1y6w";
2020-10-07 06:00:23 +00:00
};
outputs = ["out" "man" "dev" "lib"];
meta = with lib; {
2020-10-07 06:00:23 +00: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 06:00:23 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ kaction ];
};
}