about summary refs log tree commit diff
path: root/pkgs/games/humblebundle/the_bridge.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-12-08 08:14:14 +0100
committeraszlig <aszlig@nix.build>2018-12-08 08:14:14 +0100
commit474e2d09d473e884779d12afe1e72b7c2fdc240b (patch)
treeeae5298a39b1cda147c45c1dec609324842dcce1 /pkgs/games/humblebundle/the_bridge.nix
parentd8557f2a91dcaa8ade6bf88028f7c20b2dea625a (diff)
games: Rename the_bridge attribute to the-bridge
With other games we already use dashed delimiters, so it's more
consistent to also use them for "The Bridge".

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @layus
Diffstat (limited to 'pkgs/games/humblebundle/the_bridge.nix')
-rw-r--r--pkgs/games/humblebundle/the_bridge.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/games/humblebundle/the_bridge.nix b/pkgs/games/humblebundle/the_bridge.nix
deleted file mode 100644
index 92e5b691..00000000
--- a/pkgs/games/humblebundle/the_bridge.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ buildUnity, fetchHumbleBundle
-, libGLU
-}:
-
-buildUnity rec {
-  fullName = "TheBridge";
-  name = fullName;
-  version = "20140908"; # 1410197597, or 1410196636 (same date).
-
-  src = fetchHumbleBundle {
-    name = "TheBridgeLinux_1410196636.zip";
-    machineName = "thebridge_linux";
-    downloadName = "Download";
-    md5 = "6d3f5e7ff8d10d47f04ffabb8b9a031e";
-  };
-
-  buildInputs = [ libGLU ];
-
-  meta = {
-    homepage = [
-      http://thebridgeisblackandwhite.com
-      https://www.humblebundle.com/store/the-bridge
-    ];
-    #editor = "The Quantum Astrophysicists Guild";
-    description = "A 2D logic puzzle game that plays with physics and perspective";
-    longDescription = ''
-      The Bridge is a 2D logic puzzle game that forces the player to reevaluate
-      their preconceptions of physics and perspective. It is Isaac Newton meets
-      M. C. Escher. Manipulate gravity to redefine the ceiling as the floor
-      while venturing through impossible architectures. Explore increasingly
-      difficult worlds, each uniquely detailed and designed to leave the player
-      with a pronounced sense of intellectual accomplishment. The Bridge
-      exemplifies games as an art form, with beautifully hand-drawn art in the
-      style of a black-and-white lithograph.
-    '';
-  };
-}