about summary refs log tree commit diff
path: root/pkgs/games/jazz2/content.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/jazz2/content.nix')
-rw-r--r--pkgs/games/jazz2/content.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/games/jazz2/content.nix b/pkgs/games/jazz2/content.nix
new file mode 100644
index 0000000000000..0a0e72075635a
--- /dev/null
+++ b/pkgs/games/jazz2/content.nix
@@ -0,0 +1,20 @@
+{ jazz2
+, lib
+, runCommand
+}:
+
+runCommand "jazz2-content"
+{
+  inherit (jazz2) version src;
+
+  preferLocalBuild = true;
+
+  meta = with lib; {
+    description = "Assets needed for jazz2";
+    homepage = "https://github.com/deathkiller/jazz2-native";
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ surfaceflinger ];
+  };
+} ''
+  cp -r $src/Content $out
+''