about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/emulators/commanderx16/run.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/misc/emulators/commanderx16/run.nix')
-rw-r--r--nixpkgs/pkgs/misc/emulators/commanderx16/run.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/misc/emulators/commanderx16/run.nix b/nixpkgs/pkgs/misc/emulators/commanderx16/run.nix
new file mode 100644
index 000000000000..cf14252b487c
--- /dev/null
+++ b/nixpkgs/pkgs/misc/emulators/commanderx16/run.nix
@@ -0,0 +1,39 @@
+{ lib
+, stdenv
+, runtimeShell
+, symlinkJoin
+, writeTextFile
+}:
+
+{ emulator, rom }:
+
+assert emulator.version == rom.version;
+
+let
+  runScript = writeTextFile {
+    name = "run-x16";
+    text = ''
+      #!${runtimeShell}
+
+      defaultRom="${rom}/share/x16-rom/rom.bin"
+
+      exec "${emulator}/bin/x16emu" -rom $defaultRom "$@"
+    '';
+    executable = true;
+    destination = "/bin/run-x16";
+  };
+in
+symlinkJoin {
+  name = "run-x16-${emulator.version}";
+
+  paths = [
+    emulator
+    rom
+    runScript
+  ];
+}
+# TODO [ AndersonTorres ]:
+
+# 1. Parse the command line in order to allow the user to set an optional
+# rom-file
+# 2. generate runScript based on symlinkJoin (maybe a postBuild?)