attempts at mcsr

This commit is contained in:
Dea 2026-01-09 20:43:39 -05:00
parent cd224a782c
commit 1b1b8c0ea8
10 changed files with 406 additions and 4 deletions

View file

@ -0,0 +1,24 @@
{ stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation {
pname = "waywork";
version = "0-unstable-2025-11-29";
src = fetchFromGitHub {
owner = "Esensats";
repo = "waywork";
rev = "60ab89dfe32d894845a759a08cebd3d710262bcb";
hash = "sha256-XF+FgnLRnn0MydVN3Qthg/CwC8p5+8jo0QhlpPpaWMc=";
};
dontBuild = true;
dontCheck = true;
installPhase = ''
runHook preInstall
mkdir -p $out/waywork
cp *.lua $out/waywork
runHook postInstall
'';
}