2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, perl, dpkg }:
|
2015-08-31 07:04:32 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-26 07:43:04 -07:00
|
|
|
pname = "bdf2psf";
|
2021-02-21 00:02:12 -08:00
|
|
|
version = "1.201";
|
2015-08-31 07:04:32 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
|
2021-02-21 00:02:12 -08:00
|
|
|
sha256 = "sha256-XVaROIxyNBBFoXf+K1mv4mW8wWozqMcs1cgaWj8L8Q0=";
|
2015-08-31 07:04:32 -07:00
|
|
|
};
|
|
|
|
|
2020-02-07 01:02:17 -08:00
|
|
|
nativeBuildInputs = [ dpkg ];
|
2015-08-31 07:04:32 -07:00
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
2021-02-21 02:08:32 -08:00
|
|
|
unpackPhase = ''
|
|
|
|
runHook preUnpack
|
|
|
|
dpkg-deb -x $src .
|
|
|
|
runHook postUnpack
|
|
|
|
'';
|
2015-08-31 07:04:32 -07:00
|
|
|
installPhase = "
|
2021-02-21 02:08:32 -08:00
|
|
|
runHook preInstall
|
2015-08-31 07:04:32 -07:00
|
|
|
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl ${perl}/bin/perl
|
2019-09-10 15:44:57 -07:00
|
|
|
mv usr $out
|
2021-02-21 02:08:32 -08:00
|
|
|
runHook postInstall
|
2015-08-31 07:04:32 -07:00
|
|
|
";
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-08-31 07:04:32 -07:00
|
|
|
description = "BDF to PSF converter";
|
2020-03-29 03:58:40 -07:00
|
|
|
homepage = "https://packages.debian.org/sid/bdf2psf";
|
2015-08-31 07:04:32 -07:00
|
|
|
longDescription = ''
|
|
|
|
Font converter to generate console fonts from BDF source fonts
|
|
|
|
'';
|
2021-02-21 02:08:32 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2016-07-04 10:37:57 -07:00
|
|
|
maintainers = with maintainers; [ rnhmjoj vrthra ];
|
2015-12-11 10:45:07 -08:00
|
|
|
platforms = platforms.unix;
|
2015-08-31 07:04:32 -07:00
|
|
|
};
|
2015-12-11 10:45:07 -08:00
|
|
|
}
|