3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/bdf2psf/default.nix

34 lines
868 B
Nix
Raw Normal View History

2015-08-31 15:04:32 +01:00
{ stdenv, fetchurl, perl, dpkg }:
stdenv.mkDerivation rec {
2019-03-26 14:43:04 +00:00
pname = "bdf2psf";
2019-11-25 07:54:49 +00:00
version = "1.194";
2015-08-31 15:04:32 +01:00
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
2019-11-25 07:54:49 +00:00
sha256 = "10c0rbhqscizfa063m6mms31i0knh25bxr35s008b6mp5pxr33mc";
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;
unpackPhase = "dpkg-deb -x $src .";
installPhase = "
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl ${perl}/bin/perl
mv usr $out
2015-08-31 15:04:32 +01:00
";
2015-12-11 18:45:07 +00:00
meta = with stdenv.lib; {
2015-08-31 15:04:32 +01: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 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
}