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

40 lines
973 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl, dpkg }:
2015-08-31 16:04:32 +02:00
stdenv.mkDerivation rec {
2019-03-26 15:43:04 +01:00
pname = "bdf2psf";
2021-03-22 20:10:36 +01:00
version = "1.202";
2015-08-31 16:04:32 +02:00
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
2021-03-22 20:10:36 +01:00
sha256 = "sha256-QXjORfwPxNF9iWF29YcVyT2EAwcR4UQjF4Zv7dPMC9c=";
2015-08-31 16:04:32 +02:00
};
2020-02-07 10:02:17 +01:00
nativeBuildInputs = [ dpkg ];
2015-08-31 16:04:32 +02:00
dontConfigure = true;
dontBuild = true;
unpackPhase = ''
runHook preUnpack
dpkg-deb -x $src .
runHook postUnpack
'';
2015-08-31 16:04:32 +02:00
installPhase = "
runHook preInstall
2015-08-31 16:04:32 +02:00
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl ${perl}/bin/perl
mv usr $out
runHook postInstall
2015-08-31 16:04:32 +02:00
";
meta = with lib; {
2015-08-31 16:04:32 +02:00
description = "BDF to PSF converter";
2020-03-29 12:58:40 +02:00
homepage = "https://packages.debian.org/sid/bdf2psf";
2015-08-31 16:04:32 +02:00
longDescription = ''
Font converter to generate console fonts from BDF source fonts
'';
license = licenses.gpl2Plus;
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
}