GNU bug report logs -
#44321
[PATCH 0/6] Adding a (guix transformations) module
Previous Next
Reported by: Ludovic Courtès <ludo <at> gnu.org>
Date: Thu, 29 Oct 2020 23:09:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Hi,
On Fri, 30 Oct 2020 at 00:10, Ludovic Courtès <ludo <at> gnu.org> wrote:
> -* Invoking guix repl:: Programming Guix in Guile.
> +* Invoking guix repl:: Programming Guix in Guile
This change is already in commit 729d4ba025bc8556d00041f9af5b6609eeec9d80.
> +You can just as well define variants with a different set of
> +dependencies than the original package. For example, the default
> +@code{gdb} package depends on @code{guile}, but since that is an
> +optional dependency, you can define a variant that removes that
> +dependency like so:
> +
> +@lisp
> +(use-modules (gnu packages gdb) ;for 'gdb'
> + (srfi srfi-1)) ;for 'alist-delete'
> +
> +(define gdb-sans-guile
> + (package
> + (inherit gdb)
> + (inputs (alist-delete "guile"
> + (package-inputs gdb)))))
> +@end lisp
Does it make sense to add a sentence explaining that the “guile” is the
name provided by the string in the ’inputs’ list of the package ’gdb’,
namely:
--8<---------------cut here---------------start------------->8---
(inputs
`(("expat" ,expat)
("mpfr" ,mpfr)
("gmp" ,gmp)
("readline" ,readline)
("ncurses" ,ncurses)
("guile" ,guile-2.0)
("python-wrapper" ,python-wrapper)
("source-highlight" ,source-highlight)
;; Allow use of XML-formatted syscall information. This enables 'catch
;; syscall' and similar commands.
("libxml2" ,libxml2)
;; The Hurd needs -lshouldbeinlibc.
,@(if (hurd-target?) `(("hurd" ,hurd)) '())))
--8<---------------cut here---------------end--------------->8---
? Because it can be confusing. Especially when the ’rewriting’ works
on symbols instead.
> +@deffn {Scheme Procedure} options->transformation @var{opts}
> +Return a procedure that, when passed an object to build (package,
> +derivation, etc.), applies the transformations specified by @var{opts} and returns
> +the resulting objects. @var{opts} must be a list of symbol/string pairs such as:
> +
> +@example
> +((with-branch . "guile-gcrypt=master")
> + (without-tests . "libgcrypt"))
> +@end example
Is it on purpose that here you use ’without-tests’ and then…
> +Each symbol names a transformation and the corresponding string is an argument
> +to that transformation.
> +@end deffn
> +
> +For instance, a manifest equivalent to this command:
> +
> +@example
> +guix build guix \
> + --with-branch=guile-gcrypt=master \
> + --with-debug-info=zlib
> +@end example
> +
> +@noindent
> +... would look like this:
> +
> +@lisp
> +(use-modules (guix transformations))
> +
> +(define transform
> + ;; The package transformation procedure.
> + (options->transformation
> + '((with-branch . "guile-gcrypt=master")
> + (with-debug-info . "zlib"))))
> +
> +(packages->manifest
> + (list (transform (specification->package "guix"))))
> +@end lisp
…you use ’with-debug-info’ as example?
> +@lisp
> +(define libressl-instead-of-openssl
> + ;; Replace all the packages called "openssl" with LibreSSL.
> + (package-input-rewriting/spec `(("openssl" . ,(const libressl)))))
> +@end lisp
It is already in the manual but why this ’const’?
BTW, cool! Nice features! :-)
All the best,
simon
This bug report was last modified 4 years and 294 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.