Merge pull request #209391 from rnhmjoj/pr-bdf2psf

bdf2psf: 1.211 -> 1.215

authored by Michele Guerini Rocco and committed by GitHub 3ad7b8a7 97fe828d

+9 -7
+9 -7
pkgs/tools/misc/bdf2psf/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bdf2psf"; 5 - version = "1.211"; 5 + version = "1.215"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb"; 9 - sha256 = "sha256-Kzmqnctc2RUMbU3hVGmcfXFWiZhf5epaaj2eW4nVajU="; 9 + sha256 = "+xqxI4qaIJc6z7BcVDcKg4dhc+xH56ZEspWf7UPdHnY="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ dpkg ]; ··· 19 19 dpkg-deb -x $src . 20 20 runHook postUnpack 21 21 ''; 22 - installPhase = " 22 + 23 + installPhase = '' 23 24 runHook preInstall 24 - substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl ${perl}/bin/perl 25 - mv usr $out 25 + substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl "${perl}/bin/perl" 26 + rm usr/share/doc/bdf2psf/changelog.gz 27 + mv usr "$out" 26 28 runHook postInstall 27 - "; 29 + ''; 28 30 29 31 meta = with lib; { 30 32 description = "BDF to PSF converter"; ··· 34 36 ''; 35 37 license = licenses.gpl2Plus; 36 38 maintainers = with maintainers; [ rnhmjoj vrthra ]; 37 - platforms = platforms.unix; 39 + platforms = platforms.all; 38 40 }; 39 41 }