dotfiles/pkgs/fonts/ttf2psf.nix

33 lines
440 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";
sha256 = "A";
};
unpackPhase = ''
true
'';
buildInputs = with pkgs; [
tree
];
buildPhase = ''
tree > tree.txt
'';
installPhase = ''
install -Dm644 -t $out/debug tree.txt
'';
}