1
0
Fork 0
forked from dea/dea-files

attempts at mcsr

This commit is contained in:
Dea 2026-01-09 20:43:39 -05:00
parent 72b4b22594
commit 6b314f3992
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
'';
}