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