Ship ueberzugpp with packaged installs

This commit is contained in:
vrubelroman 2026-04-24 22:40:15 +03:00
parent d94365cc56
commit ded9b9fdfb
4 changed files with 13 additions and 1 deletions

View file

@ -35,6 +35,11 @@
package = pkgs.symlinkJoin {
name = "vcom";
paths = [ packageBase ];
nativeBuildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram "$out/bin/vcom" \
--prefix PATH : "${lib.makeBinPath [ pkgs.ueberzugpp ]}"
'';
};
in {
packages.default = package;