dotfiles/pkgs/fonts/ttf2psf.nix

32 lines
592 B
Nix
Raw Normal View History

2025-02-11 17:45:13 +00:00
{
pkgs,
...
}:
pkgs.stdenv.mkDerivation {
pname = "ttf2psf";
version = "1.0.0";
src = pkgs.fetchFromGitHub {
owner = "NateChoe1";
repo = "ttf2psf";
rev = "8db09d05385f595c320eccae4c48ff4393ca5bde";
2025-02-11 18:30:26 +00:00
sha256 = "v52TZp+GyXHBAMsIoHFA8ZIMPsDVls13WW29vpesCig=";
2025-02-11 17:45:13 +00:00
};
buildInputs = with pkgs; [
2025-02-11 18:30:26 +00:00
pkg-config
freetype
2025-02-11 17:45:13 +00:00
];
buildPhase = ''
2025-02-11 18:30:26 +00:00
make build/ttf2psf
2025-02-11 17:45:13 +00:00
'';
installPhase = ''
2025-02-11 18:30:26 +00:00
install -Dm 755 -t $out/bin build/ttf2psf
install -Dm 644 -t $out/share/ttf2psf data/*.*
install -Dm 644 -t $out/share/ttf2psf/fontsets data/fontsets/*
2025-02-11 17:45:13 +00:00
'';
}