nixpkgs/pkgs/by-name/bd/bdf2psf/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

43 lines
1.0 KiB
Nix

{ lib, stdenv, fetchurl, perl, dpkg }:
stdenv.mkDerivation rec {
pname = "bdf2psf";
version = "1.230";
src = fetchurl {
url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
sha256 = "sha256-W7eFrzuDcjm9P2hAP7+u9YPIhCqF3pbWb9+ynmKjs5M=";
};
nativeBuildInputs = [ dpkg ];
dontConfigure = true;
dontBuild = true;
unpackPhase = ''
runHook preUnpack
dpkg-deb -x $src .
runHook postUnpack
'';
installPhase = ''
runHook preInstall
substituteInPlace usr/bin/bdf2psf --replace /usr/bin/perl "${perl}/bin/perl"
rm usr/share/doc/bdf2psf/changelog.gz
mv usr "$out"
runHook postInstall
'';
meta = with 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.gpl2Plus;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.all;
mainProgram = "bdf2psf";
};
}