dotfiles/pkgs/fonts/dina-vector.nix

27 lines
356 B
Nix
Raw Normal View History

{
pkgs,
...
}:
pkgs.stdenv.mkDerivation {
pname = "dina-font";
version = "1.0.0";
unpackPhase = "true";
buildInputs = [
pkgs.fontforge
pkgs.dina-font
pkgs.wqy-bitmapsong
pkgs.tree
];
2025-02-11 14:48:55 +00:00
# TODO: Fix or remove package
buildPhase = ''
tree > debug.txt
'';
installPhase = ''
install -Dm644 $out/debug.txt
'';
}