Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
18 changes: 5 additions & 13 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
description = "Flake for SimulaVR/Simula";

nixConfig = {
extra-substituters = [
"https://simula.cachix.org"
];
extra-trusted-public-keys = [
"simula.cachix.org-1:Sr0SD5FIjc8cUVIeBHl8VJswQEJOBIE6u3wpmjslGBA="
];
extra-substituters = [ "https://simula.cachix.org" ];
extra-trusted-public-keys = [ "simula.cachix.org-1:Sr0SD5FIjc8cUVIeBHl8VJswQEJOBIE6u3wpmjslGBA=" ];
};

inputs = {
Expand Down Expand Up @@ -324,7 +320,7 @@
makeWrapper $out/bin/simula-unwrapped $out/bin/simula \
--prefix PATH : ${lib.makeBinPath passthru.simulaRuntimePrograms} \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath passthru.simulaRuntimeLibs}

cat > $out/bin/simula-monado-service << 'EOF'
${simulaMonadoServiceContent}
EOF
Expand Down Expand Up @@ -353,11 +349,7 @@
};

packages = {
inherit
simula
godot-haskell
godot-haskell-plugin
;
inherit simula godot-haskell godot-haskell-plugin;
default = simula;
};

Expand Down Expand Up @@ -386,4 +378,4 @@
};
};
};
}
}