forked from dea/dea-files
attempts at mcsr
This commit is contained in:
parent
72b4b22594
commit
6b314f3992
10 changed files with 406 additions and 4 deletions
24
hosts/sandalphon/mcsr/waywork.nix
Normal file
24
hosts/sandalphon/mcsr/waywork.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue