From c55fec1e0eef3b30ef5035c9655fa4f1f0b7d0aa Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Sun, 15 Jul 2018 22:56:30 +0200 Subject: epistory: init --- pkgs/games/gog/default.nix | 1 + pkgs/games/gog/epistory.nix | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/games/gog/epistory.nix (limited to 'pkgs/games') diff --git a/pkgs/games/gog/default.nix b/pkgs/games/gog/default.nix index e750ce7b..edd81bc4 100644 --- a/pkgs/games/gog/default.nix +++ b/pkgs/games/gog/default.nix @@ -13,6 +13,7 @@ let albion = callPackage_i686 ./albion {}; dungeons3 = callPackage ./dungeons3.nix {}; + epistory = callPackage ./epistory.nix { }; overload = callPackage ./overload.nix {}; party-hard = callPackage ./party-hard.nix {}; satellite-reign = callPackage ./satellite-reign.nix {}; diff --git a/pkgs/games/gog/epistory.nix b/pkgs/games/gog/epistory.nix new file mode 100644 index 00000000..8e9815c9 --- /dev/null +++ b/pkgs/games/gog/epistory.nix @@ -0,0 +1,35 @@ +{ buildUnity, fetchGog, fixFmodHook }: + +buildUnity rec { + name = "epistory"; + fullName = "Epistory"; + saveDir = "Fishing Cactus/Epistory"; + version = "1.4-gog0"; + + src = fetchGog { + productId = 1986504189; + downloadName = "en3installer0"; + sha256 = "05v9i4d7h2id5w6mfpnz3ig62v5dqibl74vahx3gqw9ya4jpgwv8"; + }; + + buildInputs = [ fixFmodHook ]; + + meta = { + homepage = [ + https://www.gog.com/game/epistory_typing_chronicles + http://epistorygame.com + ]; + downloadPage = https://embed.gog.com/account/gameDetails/1986504189.json; + description = "a beautiful atmospheric 3D action/adventure typing game"; + longDescription = '' + Epistory - Typing Chronicles is a beautiful atmospheric 3D + action/adventure typing game that tells the story of a writer lacking + inspiration who asks her muse to help write her latest book. + + It features a visually stunning papercraft art style and blends light RPG + elements with exploration and unique combat mechanics solely using the + keyboard. + ''; + }; + +} -- cgit 1.4.1 From f224478821f1d025e5e6448d95d12eb0f8a594d2 Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Sat, 17 Nov 2018 23:33:50 +0100 Subject: add The Bridge --- pkgs/games/humblebundle/default.nix | 1 + pkgs/games/humblebundle/the_bridge.nix | 37 ++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/games/humblebundle/the_bridge.nix (limited to 'pkgs/games') diff --git a/pkgs/games/humblebundle/default.nix b/pkgs/games/humblebundle/default.nix index 77069bb7..c5ec988a 100644 --- a/pkgs/games/humblebundle/default.nix +++ b/pkgs/games/humblebundle/default.nix @@ -31,6 +31,7 @@ let spaz = callPackage ./spaz.nix {}; starbound = callPackage ./starbound.nix {}; swordsandsoldiers = callPackage ./swordsandsoldiers.nix {}; + the_bridge = callPackage_i686 ./the_bridge.nix {}; trine2 = callPackage_i686 ./trine2.nix {}; unepic = callPackage ./unepic.nix {}; }; diff --git a/pkgs/games/humblebundle/the_bridge.nix b/pkgs/games/humblebundle/the_bridge.nix new file mode 100644 index 00000000..92e5b691 --- /dev/null +++ b/pkgs/games/humblebundle/the_bridge.nix @@ -0,0 +1,37 @@ +{ 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. + ''; + }; +} -- cgit 1.4.1