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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl, dpkg }:
2015-08-31 14:04:32 +00:00
stdenv.mkDerivation rec {
2019-03-26 14:43:04 +00:00
pname = "bdf2psf";
2024-07-14 19:20:04 +00:00
version = "1.229";
2015-08-31 14:04:32 +00:00
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
2024-07-14 19:20:04 +00:00
sha256 = "sha256-RQz3ny2a77jzR4wrGpXOl7Gvkw2dGae4xwnwu3EeeeY=";
2015-08-31 14:04:32 +00:00
};
2020-02-07 09:02:17 +00:00
nativeBuildInputs = [ dpkg ];
2015-08-31 14:04:32 +00:00
dontConfigure = true;
dontBuild = true;
unpackPhase = ''
runHook preUnpack
dpkg-deb -x $src .
runHook postUnpack
'';
2023-01-06 22:53:10 +00:00
installPhase = ''
runHook preInstall
2023-01-06 22:53:10 +00:00
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl "${perl}/bin/perl"
rm usr/share/doc/bdf2psf/changelog.gz
mv usr "$out"
runHook postInstall
2023-01-06 22:53:10 +00:00
'';
2015-08-31 14:04:32 +00:00
meta = with lib; {
2015-08-31 14:04:32 +00:00
description = "BDF to PSF converter";
2020-03-29 10:58:40 +00:00
homepage = "https://packages.debian.org/sid/bdf2psf";
2015-08-31 14:04:32 +00:00
longDescription = ''
Font converter to generate console fonts from BDF source fonts
'';
license = licenses.gpl2Plus;
maintainers = with maintainers; [ rnhmjoj ];
2023-01-06 22:53:10 +00:00
platforms = platforms.all;
2023-11-27 01:17:53 +00:00
mainProgram = "bdf2psf";
2015-08-31 14:04:32 +00:00
};
2015-12-11 18:45:07 +00:00
}