2015-08-31 14:04:32 +00:00
|
|
|
{ stdenv, fetchurl, perl, dpkg }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bdf2psf-${version}";
|
2017-02-04 17:31:31 +00:00
|
|
|
version = "1.158";
|
2015-08-31 14:04:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
|
2017-02-04 17:31:31 +00:00
|
|
|
sha256 = "12zaj7hi5gzdh9r7rcyqnkwik1ljw1qzj6j7rw80bgw6fn611rs9";
|
2015-08-31 14:04:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ dpkg ];
|
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
unpackPhase = "dpkg-deb -x $src .";
|
|
|
|
installPhase = "
|
|
|
|
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl ${perl}/bin/perl
|
|
|
|
mv usr/bin .
|
|
|
|
cp -r . $out
|
|
|
|
";
|
|
|
|
|
2015-12-11 18:45:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-08-31 14:04:32 +00:00
|
|
|
description = "BDF to PSF converter";
|
|
|
|
homepage = https://packages.debian.org/sid/bdf2psf;
|
|
|
|
longDescription = ''
|
|
|
|
Font converter to generate console fonts from BDF source fonts
|
|
|
|
'';
|
2015-12-11 18:45:07 +00:00
|
|
|
license = licenses.gpl2;
|
2016-07-04 17:37:57 +00:00
|
|
|
maintainers = with maintainers; [ rnhmjoj vrthra ];
|
2015-12-11 18:45:07 +00:00
|
|
|
platforms = platforms.unix;
|
2015-08-31 14:04:32 +00:00
|
|
|
};
|
2015-12-11 18:45:07 +00:00
|
|
|
}
|