;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2017 Ricardo Wurmus ;;; Copyright © 2016 Ben Woodcroft ;;; Copyright © 2020 Martin Becze ;;; Copyright © 2021 Sarah Morgensen ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (test-import-utils) #:use-module (guix
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-04-28 17:59:52 +0200
committerRicardo Wurmus <rekado@elephly.net>2023-04-29 20:27:55 +0200
commit7b4443f3654db2bdb902414231406c46846557bb (patch)
treed3d3a81b6479a2aeedd0a6ab82fc475dadfc87ea /gnu/bootloader
parent5d526f71c8a7bb7b738188c418e9751fabd12bce (diff)
downloadguix-7b4443f3654db2bdb902414231406c46846557bb.tar.gz
guix-7b4443f3654db2bdb902414231406c46846557bb.zip
gnu: r-category: Update to 2.66.0.
* gnu/packages/bioconductor.scm (r-category): Update to 2.66.0.
Diffstat (limited to 'gnu/bootloader')
0 files changed, 0 insertions, 0 deletions
("synopsis" . "Say hi") ("description" . "This package says hi.") ("license" . #f)))) ;; Note: Use 'or' because comparing with #f otherwise succeeds when ;; there's an exception instead of an actual #f. (or (package-license (alist->package meta)) 'license-is-false))) (test-equal "alist->package with SPDX license name 1/2" ; license:expat (let* ((meta '(("name" . "hello") ("version" . "2.10") ("source" . (("method" . "url-fetch") ("uri" . "mirror://gnu/hello/hello-2.10.tar.gz") ("sha256" . (("base32" . "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))) ("build-system" . "gnu") ("home-page" . "https://gnu.org") ("synopsis" . "Say hi") ("description" . "This package says hi.") ("license" . "expat")))) (package-license (alist->package meta)))) (test-equal "alist->package with SPDX license name 2/2" ; license:expat (let* ((meta '(("name" . "hello") ("version" . "2.10") ("source" . (("method" . "url-fetch") ("uri" . "mirror://gnu/hello/hello-2.10.tar.gz") ("sha256" . (("base32" . "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))) ("build-system" . "gnu") ("home-page" . "https://gnu.org") ("synopsis" . "Say hi") ("description" . "This package says hi.") ("license" . "MIT")))) (package-license (alist->package meta)))) (test-equal "alist->package with dependencies" `(("gettext" ,(specification->package "gettext"))) (let* ((meta '(("name" . "hello") ("version" . "2.10") ("source" . (("method" . "url-fetch") ("uri" . "mirror://gnu/hello/hello-2.10.tar.gz") ("sha256" . (("base32" . "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))) ("build-system" . "gnu") ("home-page" . "https://gnu.org") ("synopsis" . "Say hi") ("description" . "This package says hi.") ; ;; Note: As with Guile-JSON 3.x, JSON arrays are represented ;; by vectors. ("native-inputs" . #("gettext")) ("license" . #f)))) (package-native-inputs (alist->package meta)))) (test-end "import-utils")