Skip to content

2025.04.03.21.04.05

Choose a tag to compare

@github-actions github-actions released this 03 Apr 21:10
c98acb8
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.21.04.05/exec.nar"
      "sha256-0dAXdWdJPaf7Cqc3FSKKCRFdj/Wpuk4VCwjtvv2Oysk=";
    site = importnar
      "site"
      "https://github.com/stepbrobd/ysun/releases/download/2025.04.03.21.04.05/site.nar"
      "sha256-p4FlwtOyuZwqFWVDEBl/NedYsXkyPwSXU29Y77tSqmc=";
  in
  pkgs.writeShellApplication {
    meta.platforms = [ "x86_64-linux" ];
    name = "ysun";
    runtimeInputs = [ exec site ];
    text = ''
      exec ${exec}/bin/exec ${site} "$@"
    '';
  };