fuck idk nix

This commit is contained in:
nekohepott 2026-06-17 04:16:25 +03:00
parent 55de227527
commit c19277884f
No known key found for this signature in database

View File

@ -20,8 +20,14 @@ buildGoApplication {
src = ./.;
modules = ./gomod2nix.toml;
nativeBuildInputs = [ pkgs.makeWrapper ];
buildInputs = [ pkgs.chafa ];
postInstall = ''
mkdir -p $out/share/gogofetch/assets
cp -r assets/*.png $out/share/gogofetch/assets/
wrapProgram $out/bin/goGoFetch \
--prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.chafa ]}
'';
}