about summary refs log tree commit diff
path: root/pkgs/games/gog/knights-and-bikes.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2020-06-07 09:12:52 +0200
committeraszlig <aszlig@nix.build>2020-06-08 00:48:07 +0200
commit00fad97c45638d26b60df1bea7eb21ed53b8e775 (patch)
tree89a738a8bae2f1e7adc36e24c06d4ef18e13de49 /pkgs/games/gog/knights-and-bikes.nix
parentce6c04b855cfbc7f710f38eed91f5f541f762bf6 (diff)
games/gog: Add Gibbous and Knights and Bikes
Both games have been laying around uncommitted for quite a while and
since they work out of the box with the generic Unity3d builder they're
also straightforward to package without any surprises.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/games/gog/knights-and-bikes.nix')
-rw-r--r--pkgs/games/gog/knights-and-bikes.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/games/gog/knights-and-bikes.nix b/pkgs/games/gog/knights-and-bikes.nix
new file mode 100644
index 00000000..63c44f29
--- /dev/null
+++ b/pkgs/games/gog/knights-and-bikes.nix
@@ -0,0 +1,14 @@
+{ buildUnity, fetchGog }:
+
+buildUnity {
+  name = "knights-and-bikes";
+  fullName = "Knights and Bikes";
+  saveDir = "Foam Sword/Knights and Bikes";
+  version = "1.07";
+
+  src = fetchGog {
+    productId = 1687611835;
+    downloadName = "en3installer0";
+    sha256 = "0s527s08mkc54ynk18shl1fnr8pjcnfd7qjdilgi9xhghd5sj6g1";
+  };
+}