psftools: init at 1.0.13
This commit is contained in:
parent
57adf7c2f8
commit
78d9b5fb1a
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -28308,4 +28308,5 @@ in
|
||||||
|
|
||||||
cagebreak = callPackage ../applications/window-managers/cagebreak/default.nix {};
|
cagebreak = callPackage ../applications/window-managers/cagebreak/default.nix {};
|
||||||
|
|
||||||
|
psftools = callPackage ../os-specific/linux/psftools {};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue