nixpkgs/pkgs/tools/misc/bdf2psf/default.nix
2021-07-27 06:36:31 +00:00

40 lines
973 B
Nix

{ lib, stdenv, fetchurl, perl, dpkg }:
stdenv.mkDerivation rec {
pname = "bdf2psf";
version = "1.205";
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
sha256 = "sha256-elFmsqtndo4ReR4IoyhC56k0PMqy5QrUxOGUQLGeu0I=";
};
nativeBuildInputs = [ dpkg ];
dontConfigure = true;
dontBuild = true;
unpackPhase = ''
runHook preUnpack
dpkg-deb -x $src .
runHook postUnpack
'';
installPhase = "
runHook preInstall
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl ${perl}/bin/perl
mv usr $out
runHook postInstall
";
meta = with lib; {
description = "BDF to PSF converter";
homepage = "https://packages.debian.org/sid/bdf2psf";
longDescription = ''
Font converter to generate console fonts from BDF source fonts
'';
license = licenses.gpl2Plus;
maintainers = with maintainers; [ rnhmjoj vrthra ];
platforms = platforms.unix;
};
}