aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/chez-scheme-bin-sh.patch
diff options
context:
space:
mode:
authorRoel Janssen <roel@gnu.org>2023-03-05 13:54:28 +0100
committerRoel Janssen <roel@gnu.org>2023-03-05 13:54:28 +0100
commit6b792019561d378c92d903d0dc53c3e9719f0fbd (patch)
treee6da5e9d487d59d6c31c53d9d3875748cc98796e /gnu/packages/patches/chez-scheme-bin-sh.patch
parentd92ec2f2812c76b23aab778e26708cf353542ae9 (diff)
downloadguix-6b792019561d378c92d903d0dc53c3e9719f0fbd.tar.gz
guix-6b792019561d378c92d903d0dc53c3e9719f0fbd.zip
gnu: virtuoso-ose: Update to 7.2.9.
* gnu/packages/databases.scm (virtuoso-ose): Update to 7.2.9; Add 'which' for the test suite. * gnu/packages/patches/virtuoso-ose-remove-pre-built-jar-files.patch: Update patch for new version.
Diffstat (limited to 'gnu/packages/patches/chez-scheme-bin-sh.patch')
0 files changed, 0 insertions, 0 deletions
PROVENANCE-SERVICE-TYPE to its services." (home-environment (inherit he) (services (cons (service home-provenance-service-type config-file) (home-environment-user-services he))))) (define-gexp-compiler (home-environment-compiler (he <home-environment>) system target) ((store-lift (lambda (store) (run-with-store store (home-environment-derivation he) #:system system #:target target))))) (define %profile-generation-rx ;; Regexp that matches profile generation. (make-regexp "(.*)-([0-9]+)-link$")) (define (home-generation-base file) "If FILE is a Home generation GC root such as \"guix-home-42-link\", return its corresponding base---e.g., \"guix-home\". Otherwise return #f. This is similar to the 'generation-profile' procedure but applied to Home generations." (match (regexp-exec %profile-generation-rx file) (#f #f) (m (let ((profile (match:substring m 1))) ;; Distinguish from a "real" profile and from a system generation. (and (file-exists? (string-append profile "/on-first-login")) (file-exists? (string-append profile "/profile/manifest")) profile)))))