Skip to content
Snippets Groups Projects
Commit aba326f7 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

packages: Change `base32' to allow non-literal strings.

* guix/packages.scm (base32): Allow arguments that are not literal strings.
parent 2a6c6795
No related branches found
No related tags found
No related merge requests found
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -93,9 +93,12 @@ (define-syntax base32 ...@@ -93,9 +93,12 @@ (define-syntax base32
(syntax-case s () (syntax-case s ()
((_ str) ((_ str)
(string? (syntax->datum #'str)) (string? (syntax->datum #'str))
;; A literal string: do the conversion at expansion time.
(with-syntax ((bv (nix-base32-string->bytevector (with-syntax ((bv (nix-base32-string->bytevector
(syntax->datum #'str)))) (syntax->datum #'str))))
#''bv))))) #''bv))
((_ str)
#'(nix-base32-string->bytevector str)))))
;; A package. ;; A package.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment