There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
41 lines
644 B
Nix
41 lines
644 B
Nix
{
|
|
bc, # for tests
|
|
fennel,
|
|
stdenv,
|
|
linotify,
|
|
lua,
|
|
lualinux,
|
|
cpio,
|
|
}:
|
|
let
|
|
pname = "anoia";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname;
|
|
version = "0.1";
|
|
src = ./.;
|
|
nativeBuildInputs = [
|
|
fennel
|
|
cpio
|
|
bc
|
|
];
|
|
buildInputs = with lua.pkgs; [
|
|
linotify
|
|
lualinux
|
|
];
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/share/lua/${lua.luaversion}/${pname}"
|
|
find . -name \*.lua | cpio -p -d "$out/share/lua/${lua.luaversion}/${pname}"
|
|
|
|
mkdir -p "$dev/share/lua/${lua.luaversion}/${pname}"
|
|
cp assert.fnl "$dev/share/lua/${lua.luaversion}/${pname}"
|
|
'';
|
|
}
|