Subject | Hash | Author | Date (UTC) |
---|---|---|---|
gnu: Add tsukundere. | 3e072a59be55107bdcde4d1eabe2c857a254ebcc | Leo Prikler | 2020-10-15 10:20:41 |
gnu: xfce4-cpufreq-plugin: Update to 1.2.2. | a19983fb4d9e80e301a7b774b4637537b1506e3c | Michael Rohleder | 2020-10-15 12:58:26 |
gnu: linux-libre: Enable XDP sockets and their monitoring. | f43287aff06082c83649a1d0c0184b9ac347c3c8 | Tobias Geerinckx-Rice via Guix-patches via | 2020-10-06 22:52:17 |
gnu: linux-libre: Update to 4.4.239. | 94e591633dbff4a6db7d6a86e664a36090ff3f68 | Leo Famulari | 2020-10-14 14:59:50 |
gnu: linux-libre 4.9: Update to 4.9.239. | f5e0df37ad864c327737647eecbcdab45550a46d | Leo Famulari | 2020-10-14 14:59:10 |
gnu: linux-libre 4.14: Update to 4.14.201. | a5d02c1634cdd7c3ab2df92f0af4666354fe8819 | Leo Famulari | 2020-10-14 14:58:00 |
gnu: linux-libre 4.19: Update to 4.19.151. | aa75d5163e2a614113dbf2f2dd73e2d422b934a3 | Leo Famulari | 2020-10-14 14:49:57 |
gnu: linux-libre 5.4: Update to 5.4.71. | 7a34589246f0ce22829dc81fa86be112e635edd6 | Leo Famulari | 2020-10-14 14:44:26 |
gnu: linux-libre: Update to 5.8.15. | 78890b7aeea61d499d01d8f637cd2cc77bfb512f | Leo Famulari | 2020-10-14 14:42:03 |
doc: Add "Build Utilities" section. | 61263e1ba3a5d9b31da5876b1c5248cee3859996 | Ludovic Courtès | 2020-10-15 16:48:30 |
ui: Only suggest modules that export the unbound variable identifier. | 5ef1508942ee083ed22b844f5291e59320016b79 | Ludovic Courtès | 2020-10-15 14:41:14 |
doc: cookbook: Use @code for the identifiers of utility functions. | 48720afb322ab5ad1b6102276f4795a14803fa61 | Ludovic Courtès | 2020-10-15 14:13:00 |
doc: cookbook: More "#true" and "#false". | 345136834579940ff85657ccba08cf092e949579 | Ludovic Courtès | 2020-10-15 13:35:25 |
doc: cookbook: Use @var for meta-syntactic variables. | 51f34e21c69459d3226bb1bbe0c0aaaf2e00465c | Ludovic Courtès | 2020-10-15 13:24:07 |
doc: cookbook: Fix 'let' form in example. | 7802988201820dd951407521e243557293dceb94 | Ludovic Courtès | 2020-10-15 13:16:59 |
gnu: dune: Update to 2.7.1. | 339177956affdc471832750a3805b74356487e93 | Julien Lepiller | 2020-09-30 22:07:51 |
gnu: ocaml-4.07: Ensure build with ocaml4.7-dune. | 339c752d0542129dd7e55c2e67084a512fa6856f | Julien Lepiller | 2020-10-01 12:50:30 |
gnu: ocaml-jane-street-headers: Build only with OCaml 4.07. | f2df5a4bb200e4d7c7ed5c569bccc137b99840b3 | Julien Lepiller | 2020-10-01 12:35:49 |
gnu: ocaml-compiler-libs: Build only with OCaml 4.07. | c49b94a56c5c42c04e5c73c4be2533badeae19d4 | Julien Lepiller | 2020-10-01 12:33:00 |
gnu: Add ocaml-csexp. | 171abdd8f5194af0a141c2f5e2d542c3c89a00b0 | Julien Lepiller | 2020-09-30 20:42:47 |
File | Lines added | Lines deleted |
---|---|---|
gnu/packages/game-development.scm | 29 | 0 |
File gnu/packages/game-development.scm changed (mode: 100644) (index 061dc13f69..96ed2f9da4) | |||
... | ... | clone.") | |
485 | 485 | ;; under BSD-2. | ;; under BSD-2. |
486 | 486 | (license license:gpl2+))) | (license license:gpl2+))) |
487 | 487 | ||
488 | (define-public tsukundere | ||
489 | (package | ||
490 | (name "tsukundere") | ||
491 | (version "0.2.0") | ||
492 | (source (origin | ||
493 | (method git-fetch) | ||
494 | (uri (git-reference | ||
495 | (url "https://gitlab.com/leoprikler/tsukundere") | ||
496 | (commit version))) | ||
497 | (file-name (git-file-name name version)) | ||
498 | (sha256 | ||
499 | (base32 | ||
500 | "0qmqch8hh7vsa8qaz853vwbkz0krb106955dnz8dsl7skbm5jpn6")))) | ||
501 | (build-system gnu-build-system) | ||
502 | (native-inputs | ||
503 | `(("autoconf" ,autoconf-wrapper) | ||
504 | ("automake" ,automake) | ||
505 | ("guile" ,guile-3.0) | ||
506 | ("pkg-config" ,pkg-config))) | ||
507 | (propagated-inputs | ||
508 | `(("guile-sdl2" ,guile3.0-sdl2))) | ||
509 | (home-page "https://gitlab.com/leoprikler/tsukundere") | ||
510 | (synopsis "Visual novel engine") | ||
511 | (description "Tsukundere is a game engine geared heavily towards the | ||
512 | development of visual novels, written on top of Guile-SDL2. It is still | ||
513 | experimental and at the time of writing contains little more than the Guile | ||
514 | modules, that make up its runtime.") | ||
515 | (license license:lgpl3+))) | ||
516 | |||
488 | 517 | (define-public sfml | (define-public sfml |
489 | 518 | (package | (package |
490 | 519 | (name "sfml") | (name "sfml") |