2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, perl, dpkg }:
|
2015-08-31 14:04:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-26 14:43:04 +00:00
|
|
|
pname = "bdf2psf";
|
2024-07-14 19:20:04 +00:00
|
|
|
version = "1.229";
|
2015-08-31 14:04:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
|
2024-07-14 19:20:04 +00:00
|
|
|
sha256 = "sha256-RQz3ny2a77jzR4wrGpXOl7Gvkw2dGae4xwnwu3EeeeY=";
|
2015-08-31 14:04:32 +00:00
|
|
|
};
|
|
|
|
|
2020-02-07 09:02:17 +00:00
|
|
|
nativeBuildInputs = [ dpkg ];
|
2015-08-31 14:04:32 +00:00
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
2021-02-21 10:08:32 +00:00
|
|
|
unpackPhase = ''
|
|
|
|
runHook preUnpack
|
|
|
|
dpkg-deb -x $src .
|
|
|
|
runHook postUnpack
|
|
|
|
'';
|
2023-01-06 22:53:10 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2021-02-21 10:08:32 +00:00
|
|
|
runHook preInstall
|
2023-01-06 22:53:10 +00:00
|
|
|
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl "${perl}/bin/perl"
|
|
|
|
rm usr/share/doc/bdf2psf/changelog.gz
|
|
|
|
mv usr "$out"
|
2021-02-21 10:08:32 +00:00
|
|
|
runHook postInstall
|
2023-01-06 22:53:10 +00:00
|
|
|
'';
|
2015-08-31 14:04:32 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-08-31 14:04:32 +00:00
|
|
|
description = "BDF to PSF converter";
|
2020-03-29 10:58:40 +00:00
|
|
|
homepage = "https://packages.debian.org/sid/bdf2psf";
|
2015-08-31 14:04:32 +00:00
|
|
|
longDescription = ''
|
|
|
|
Font converter to generate console fonts from BDF source fonts
|
|
|
|
'';
|
2021-02-21 10:08:32 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2024-07-05 01:29:06 +00:00
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
2023-01-06 22:53:10 +00:00
|
|
|
platforms = platforms.all;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "bdf2psf";
|
2015-08-31 14:04:32 +00:00
|
|
|
};
|
2015-12-11 18:45:07 +00:00
|
|
|
}
|