bdf2psf: init at 1.132

This commit is contained in:
rnhmjoj 2015-08-31 16:04:32 +02:00
parent 77f18a152b
commit d4b4647857
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchurl, perl, dpkg }:
stdenv.mkDerivation rec {
name = "bdf2psf-${version}";
version = "1.132";
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
sha256 = "01r8v6qi6klsgi66ld86c78cdz308mywrm9j101d73nsxgx6qhzz";
};
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
";
meta = {
description = "BDF to PSF converter";
homepage = https://packages.debian.org/sid/bdf2psf;
longDescription = ''
Font converter to generate console fonts from BDF source fonts
'';
license = stdenv.lib.licenses.gpl2;
};
}

View file

@ -721,6 +721,8 @@ let
bc = callPackage ../tools/misc/bc { };
bdf2psf = callPackage ../tools/misc/bdf2psf { };
bcache-tools = callPackage ../tools/filesystems/bcache-tools { };
bchunk = callPackage ../tools/cd-dvd/bchunk { };