Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6stdenv.mkDerivation rec { 7 pname = "psftools"; 8 version = "1.1.2"; 9 src = fetchurl { 10 url = "https://www.seasip.info/Unix/PSF/${pname}-${version}.tar.gz"; 11 sha256 = "sha256-d/XlKPqYy9x8KNT+8G6zv9ST/uU53Tg4pYrlA17Jh94="; 12 }; 13 outputs = [ 14 "out" 15 "man" 16 "dev" 17 "lib" 18 ]; 19 20 meta = with lib; { 21 homepage = "https://www.seasip.info/Unix/PSF"; 22 description = "Conversion tools for .PSF fonts"; 23 longDescription = '' 24 The PSFTOOLS are designed to manipulate fixed-width bitmap fonts, 25 such as DOS or Linux console fonts. Both the PSF1 (8 pixels wide) 26 and PSF2 (any width) formats are supported; the default output 27 format is PSF2. 28 ''; 29 platforms = platforms.unix; 30 license = licenses.gpl2Plus; 31 maintainers = with maintainers; [ kaction ]; 32 }; 33}