[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: Add pipewalker.
From: |
Tobias Geerinckx-Rice |
Subject: |
03/06: gnu: Add pipewalker. |
Date: |
Thu, 30 Aug 2018 13:29:03 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 8294362688096145547464ceaa25edd5cc65d024
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Wed Mar 21 00:26:15 2018 +0100
gnu: Add pipewalker.
* gnu/packages/games.scm (pipewalker): New public variable.
---
gnu/packages/games.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0142fc8..3c5063f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -793,6 +793,46 @@ role, and your gender.")
(license:fsdg-compatible
"https://nethack.org/common/license.html"))))
+(define-public pipewalker
+ (package
+ (name "pipewalker")
+ (version "0.9.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://downloads.sourceforge.net/pipewalker/"
+ name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1x46wgk0s55562pd96cxagxkn6wpgglq779f9b64ff1k3xzp3myn"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ (list (string-append "--docdir=" (assoc-ref %outputs "out")
+ "/share/doc/" ,name "-" ,version))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'configure 'patch-docdir
+ ;; Makefile.in ignores configure's ‘--docdir=...’ option. Fix that.
+ (lambda _
+ (substitute* "Makefile"
+ (("(pkgdocdatadir = ).*" _ assignment)
+ (string-append assignment "$(docdir)\n")))
+ #t)))))
+ (inputs
+ `(("libpng" ,libpng)
+ ("mesa" ,mesa)
+ ("sdl" ,sdl)))
+ (home-page "http://pipewalker.sourceforge.net/")
+ (synopsis "Logical tile puzzle")
+ (description
+ "PipeWalker is a simple puzzle game with many diffent themes: connect all
+computers to one network server, bring water from a source to the taps, etc.
+The underlying mechanism is always the same: you must turn each tile in the
+grid in the right direction to combine all components into a single circuit.
+Every puzzle has a complete solution, although there may be more than one.")
+ (license license:gpl3+)))
+
(define-public prboom-plus
(package
(name "prboom-plus")
- branch master updated (7693f67 -> 0c048c1), Tobias Geerinckx-Rice, 2018/08/30
- 06/06: gnu: cmocka: Update to 1.1.2., Tobias Geerinckx-Rice, 2018/08/30
- 05/06: gnu: keyutils: Update to 1.5.11., Tobias Geerinckx-Rice, 2018/08/30
- 04/06: gnu: Don't use unstable tarballs in (packages opencl)., Tobias Geerinckx-Rice, 2018/08/30
- 03/06: gnu: Add pipewalker.,
Tobias Geerinckx-Rice <=
- 01/06: gnu: Add ddcutil., Tobias Geerinckx-Rice, 2018/08/30
- 02/06: gnu: Add msr-tools., Tobias Geerinckx-Rice, 2018/08/30