all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#66654] [PATCH] gnu: Add moonfish.
@ 2023-10-20 18:40 zamfofex
  2023-10-21  1:17 ` [bug#66654] [PATCH v2] " zamfofex
  2023-10-27 11:52 ` bug#66654: [PATCH] " Ricardo Wurmus
  0 siblings, 2 replies; 3+ messages in thread
From: zamfofex @ 2023-10-20 18:40 UTC (permalink / raw)
  To: 66654; +Cc: zamfofex, Liliana Marie Prikler, 宋文武

* gnu/packages/games.scm (moonfish): New variable.
---
 gnu/packages/games.scm | 50 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4d5b85248a..cd48130f08 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -10409,6 +10409,56 @@ (define-public stockfish
       (home-page "https://stockfishchess.org/")
       (license license:gpl3+))))
 
+(define-public moonfish
+  (let ((commit "69674e88a5393217a724b9390ff3c843bd0fc768")
+        (revision "1"))
+    (package
+      (name "moonfish")
+      (version (git-version "0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://git.sr.ht/~zamfofex/moonfish")
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "10hfdjr6qi6ladmgq9h69v3zkarld9kjaav7q3y8w5fakljypjjb"))
+                (file-name (git-file-name name version))))
+      (build-system gnu-build-system)
+      (inputs (list bearssl cjson))
+      (outputs '("out" "tools"))
+      (arguments
+       `(#:make-flags '(,(string-append "CC="
+                                        (cc-for-target)))
+         #:tests? #f ;no check target
+         #:phases (modify-phases %standard-phases
+                    (delete 'configure) ;no configure script
+                    (replace 'install
+                      ;; no 'install' target
+                      (lambda _
+                        (let* ((out (assoc-ref %outputs "out"))
+                               (tools (assoc-ref %outputs "tools"))
+                               (out-bin (string-append out "/bin"))
+                               (tools-bin (string-append tools "/bin"))
+                               (tool (string-append tools-bin "/moonfish-")))
+                          (mkdir-p out-bin)
+                          (mkdir-p tools-bin)
+                          (copy-file "moonfish"
+                                     (string-append out-bin "/moonfish"))
+                          (copy-file "play"
+                                     (string-append tool "play"))
+                          (copy-file "lichess"
+                                     (string-append tool "lichess"))
+                          (copy-file "analyse"
+                                     (string-append tool "analyse"))))))))
+      (home-page "https://git.sr.ht/~zamfofex/moonfish")
+      (synopsis "Simple chess engine written in C")
+      (description
+       "moonfish is a toy UCI chess engine made for fun.  It is inspired by
+sunfish, but is written in C rather than Python.  It also has TUI tools for
+using any UCI engine and also to connect UCI engines to Lichess.")
+      (license license:agpl3+))))
+
 (define-public barrage
   (package
     (name "barrage")

base-commit: daeeaa221605726d8853b00261619ba039bd6db7
prerequisite-patch-id: fa910eaade316c0f90b10713e330b4a5094cf327
prerequisite-patch-id: 5c50cfc478757944497783ccb53f0bbdaaacedfc
prerequisite-patch-id: 1f0d9d1c7ae75a37170f7a6e3e4e6c3432c49981
prerequisite-patch-id: 17e3c302bf595929a92e1a4ef3be2af6686af253
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#66654] [PATCH v2] gnu: Add moonfish.
  2023-10-20 18:40 [bug#66654] [PATCH] gnu: Add moonfish zamfofex
@ 2023-10-21  1:17 ` zamfofex
  2023-10-27 11:52 ` bug#66654: [PATCH] " Ricardo Wurmus
  1 sibling, 0 replies; 3+ messages in thread
From: zamfofex @ 2023-10-21  1:17 UTC (permalink / raw)
  To: 66654; +Cc: zamfofex, Liliana Marie Prikler, 宋文武

* gnu/packages/games.scm (moonfish): New variable.
---
 gnu/packages/games.scm | 50 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4d5b85248a..97515abc10 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -10409,6 +10409,56 @@ (define-public stockfish
       (home-page "https://stockfishchess.org/")
       (license license:gpl3+))))
 
+(define-public moonfish
+  (let ((commit "4f8829009e8c26e6a878261e0bc4c7e7617ef6b6")
+        (revision "1"))
+    (package
+      (name "moonfish")
+      (version (git-version "0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://git.sr.ht/~zamfofex/moonfish")
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "1ksg42x9cyn3pbfryy9raqb355k47cqcisascpy157c3cgdr2z60"))
+                (file-name (git-file-name name version))))
+      (build-system gnu-build-system)
+      (inputs (list bearssl cjson))
+      (outputs '("out" "tools"))
+      (arguments
+       `(#:make-flags '(,(string-append "CC="
+                                        (cc-for-target)))
+         #:tests? #f ;no check target
+         #:phases (modify-phases %standard-phases
+                    (delete 'configure) ;no configure script
+                    (replace 'install
+                      ;; no 'install' target
+                      (lambda _
+                        (let* ((out (assoc-ref %outputs "out"))
+                               (tools (assoc-ref %outputs "tools"))
+                               (out-bin (string-append out "/bin"))
+                               (tools-bin (string-append tools "/bin"))
+                               (tool (string-append tools-bin "/moonfish-")))
+                          (mkdir-p out-bin)
+                          (mkdir-p tools-bin)
+                          (copy-file "moonfish"
+                                     (string-append out-bin "/moonfish"))
+                          (copy-file "play"
+                                     (string-append tool "play"))
+                          (copy-file "lichess"
+                                     (string-append tool "lichess"))
+                          (copy-file "analyse"
+                                     (string-append tool "analyse"))))))))
+      (home-page "https://git.sr.ht/~zamfofex/moonfish")
+      (synopsis "Simple chess engine written in C")
+      (description
+       "moonfish is a toy UCI chess engine made for fun.  It is inspired by
+sunfish, but is written in C rather than Python.  It also has TUI tools for
+using any UCI engine and also to connect UCI engines to Lichess.")
+      (license license:agpl3+))))
+
 (define-public barrage
   (package
     (name "barrage")

base-commit: 17954419aa25bf947f3351d82a11dc2f5472acaa
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#66654: [PATCH] gnu: Add moonfish.
  2023-10-20 18:40 [bug#66654] [PATCH] gnu: Add moonfish zamfofex
  2023-10-21  1:17 ` [bug#66654] [PATCH v2] " zamfofex
@ 2023-10-27 11:52 ` Ricardo Wurmus
  1 sibling, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2023-10-27 11:52 UTC (permalink / raw)
  To: 66654-done

Thanks for your patience and the patch!

I’ve changed the arguments to use G-expressions and pushed the package
with commit c11b9133d29a815d947b556551563c8dc4a68a35.

-- 
Ricardo




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-10-27 11:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-20 18:40 [bug#66654] [PATCH] gnu: Add moonfish zamfofex
2023-10-21  1:17 ` [bug#66654] [PATCH v2] " zamfofex
2023-10-27 11:52 ` bug#66654: [PATCH] " Ricardo Wurmus

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.