nixpkgs/pkgs/tools/misc/bdf2psf/default.nix

34 lines
862 B
Nix
Raw Normal View History

2015-08-31 10:04:32 -04:00
{ stdenv, fetchurl, perl, dpkg }:
stdenv.mkDerivation rec {
2019-03-26 10:43:04 -04:00
pname = "bdf2psf";
2019-08-22 23:13:24 -04:00
version = "1.193";
2015-08-31 10:04:32 -04:00
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
2019-08-22 23:13:24 -04:00
sha256 = "1mykng02fyxshm02kywrk16f27b1jhgn9zcaxcvxd255sn58w68k";
2015-08-31 10:04:32 -04: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 $out
2015-08-31 10:04:32 -04:00
";
2015-12-11 13:45:07 -05:00
meta = with stdenv.lib; {
2015-08-31 10:04:32 -04: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 13:45:07 -05:00
license = licenses.gpl2;
2016-07-04 13:37:57 -04:00
maintainers = with maintainers; [ rnhmjoj vrthra ];
2015-12-11 13:45:07 -05:00
platforms = platforms.unix;
2015-08-31 10:04:32 -04:00
};
2015-12-11 13:45:07 -05:00
}