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

35 lines
890 B
Nix
Raw Normal View History

2015-08-31 16:04:32 +02:00
{ stdenv, fetchurl, perl, dpkg }:
stdenv.mkDerivation rec {
name = "bdf2psf-${version}";
version = "1.184";
2015-08-31 16:04:32 +02:00
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
sha256 = "0lyxiwm0586b8gyl13ks2rqqa6abkqaxc4i08hvwyza1k1cqm2jc";
2015-08-31 16:04:32 +02: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/bin .
cp -r . $out
";
2015-12-11 19:45:07 +01:00
meta = with stdenv.lib; {
2015-08-31 16:04:32 +02: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 19:45:07 +01:00
license = licenses.gpl2;
2016-07-04 19:37:57 +02:00
maintainers = with maintainers; [ rnhmjoj vrthra ];
2015-12-11 19:45:07 +01:00
platforms = platforms.unix;
2015-08-31 16:04:32 +02:00
};
2015-12-11 19:45:07 +01:00
}