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