mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
bdf2psf: init at 1.132
This commit is contained in:
parent
77f18a152b
commit
d4b4647857
32
pkgs/tools/misc/bdf2psf/default.nix
Normal file
32
pkgs/tools/misc/bdf2psf/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchurl, perl, dpkg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bdf2psf-${version}";
|
||||
version = "1.132";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
|
||||
sha256 = "01r8v6qi6klsgi66ld86c78cdz308mywrm9j101d73nsxgx6qhzz";
|
||||
};
|
||||
|
||||
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 = {
|
||||
description = "BDF to PSF converter";
|
||||
homepage = https://packages.debian.org/sid/bdf2psf;
|
||||
longDescription = ''
|
||||
Font converter to generate console fonts from BDF source fonts
|
||||
'';
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
}
|
@ -721,6 +721,8 @@ let
|
||||
|
||||
bc = callPackage ../tools/misc/bc { };
|
||||
|
||||
bdf2psf = callPackage ../tools/misc/bdf2psf { };
|
||||
|
||||
bcache-tools = callPackage ../tools/filesystems/bcache-tools { };
|
||||
|
||||
bchunk = callPackage ../tools/cd-dvd/bchunk { };
|
||||
|
Loading…
Reference in New Issue
Block a user