path: root/gnu/packages/games.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2022-11-05 12:25:04 -0300
committerVinicius Monego <monego@posteo.net>2023-02-05 09:38:58 -0300
commitadd37404d9ef23018df059ae0de76bd62d0a443a (patch)
tree01148b0fb408008d266786eb1716859f044f24b5 /gnu/packages/games.scm
parent139c9a53cb19a97947aa6998eae953a4f32d3c3e (diff)
downloadguix-add37404d9ef23018df059ae0de76bd62d0a443a.tar.gz
guix-add37404d9ef23018df059ae0de76bd62d0a443a.zip
gnu: hypercorn: Update to 0.14.3.
* gnu/packages/python-web.scm (hypercorn): Update to 0.14.3. [source]: Fetch from GitHub. [build-system]: Switch to pyproject-build-system. [arguments]: Don't override the 'check phase. [native-inputs]: Add python-poetry-core.
Diffstat (limited to 'gnu/packages/games.scm')
0 files changed, 0 insertions, 0 deletions
t? (negate package-superseded))) (define (upstream-origin source) "Return SOURCE without any patches or snippet." (origin (inherit source) (snippet #f) (patches '()))) (define (all-origins) "Return the list of origins referred to by all the packages." (let loop ((packages (all-packages)) (origins '()) (visited vlist-null)) (match packages ((head . tail) (let ((new (remove (cut vhash-assq <> visited) (package-direct-sources head)))) (loop tail (append new origins) (fold (cut vhash-consq <> #t <>) visited new)))) (() origins)))) ;; Return a manifest containing all the origins. (manifest (map (lambda (origin) (manifest-entry (name (or (origin-actual-file-name origin) "origin")) (version "0") (item (upstream-origin origin)))) (all-origins)))