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.00.10/exec.nar"
"sha256-0dAXdWdJPaf7Cqc3FSKKCRFdj/Wpuk4VCwjtvv2Oysk=";
site = importnar
"site"
"https://github.com/stepbrobd/ysun/releases/download/2025.04.03.19.00.10/site.nar"
"sha256-2wVeHbahgbXBGsAZayUlxN+F7KyE4vKQXvrI9y3wc8o=";
in
pkgs.writeShellApplication {
meta.platforms = [ "x86_64-linux" ];
name = "ysun";
runtimeInputs = [ exec site ];
text = ''
exec ${exec}/bin/exec ${site} "$@"
'';
};