mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
19a94e60da
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from bdf2psf
35 lines
890 B
Nix
35 lines
890 B
Nix
{ stdenv, fetchurl, perl, dpkg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bdf2psf-${version}";
|
|
version = "1.185";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
|
|
sha256 = "0i8ppqj6yhdkvjkwfl588f2zpaybj61pq64bhlnmc8c4snwpn1z6";
|
|
};
|
|
|
|
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 = with stdenv.lib; {
|
|
description = "BDF to PSF converter";
|
|
homepage = https://packages.debian.org/sid/bdf2psf;
|
|
longDescription = ''
|
|
Font converter to generate console fonts from BDF source fonts
|
|
'';
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ rnhmjoj vrthra ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|