From 9b38d9b3b34edb55f7f42b72a611b39e5164cf9f Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 19 Dec 2021 22:17:20 +0100 Subject: gnu: buku: Fix build. * gnu/packages/web.scm (buku)[origin]: Drop file-name. [arguments]: Drop sanity-check. [inputs]: Add python-flask. --- gnu/packages/web.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 9442b65439..c8d08b3fe6 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -7599,15 +7599,18 @@ HTTrack is fully configurable, and has an integrated help system.") (origin (method url-fetch) (uri (pypi-uri "buku" version)) - (file-name (git-file-name name version)) (sha256 (base32 "1n4d1mkjyvzdxbyq067p1p9skb3iwx0msd86nzr224dlqrfh9675")))) (build-system python-build-system) (arguments - `(#:tests? #f)) ;FIXME: many tests need network access + `(#:tests? #f ; FIXME: many tests need network access + #:phases + (modify-phases %standard-phases + ;; XXX: missing inputs, e.g. python-flask-admin + (delete 'sanity-check)))) (inputs (list python-beautifulsoup4 python-certifi python-cryptography - python-html5lib python-urllib3)) + python-flask python-html5lib python-urllib3)) (home-page "https://github.com/jarun/buku") (synopsis "Bookmark manager") (description -- cgit v1.2.3 name='qt'>
path: root/gnu/packages/calendar.scm
AgeCommit message (Collapse)Author
2024-08-31gnu: date: Fix build with newer tzdata.Josselin Poiret
* gnu/packages/patches/date-ignore-zonenow.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/calendar.scm (date): Use it. Change-Id: I29bdfb49237650706abd870f2b9875739d12c6d5
2024-08-31gnu: remind: Add 'bash' input for 'wrap-program'.Maxime Devos
It is required for cross-compilation. * gnu/packages/calendar.scm (remind)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I17b53c1bdb59eedffed8c9079bd7d065988bfac0