packages.default =
let
importnar = name: url: hash: import <nix/fetchurl.nix> {
inherit name url hash;
unpack = true;
};
exec = importnar
"exec"
"https://github.com/stepbrobd/ysun/releases/download/2025.04.03.19.06.14/exec.nar"
"sha256-0dAXdWdJPaf7Cqc3FSKKCRFdj/Wpuk4VCwjtvv2Oysk=";
site = importnar
"site"
"https://github.com/stepbrobd/ysun/releases/download/2025.04.03.19.06.14/site.nar"
"sha256-+fVnv1ZdSX4pSGAk78lGtVYc+1sKIvtATgB/HnqVp18=";
in
pkgs.writeShellApplication {
meta.platforms = [ "x86_64-linux" ];
name = "ysun";
runtimeInputs = [ exec site ];
text = ''
exec ${exec}/bin/exec ${site} "$@"
'';
};