aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-daemon.conf.in
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-01-14 22:56:14 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-01-15 16:33:08 -0500
commit4ef16b23e6735d164d5f5cb6375132f83cd78d5b (patch)
treec4a1278927dee8a02edf0b6f668134b45637880b /etc/guix-daemon.conf.in
parent43c889de85e79f279931d6cced261f54c9be5075 (diff)
downloadguix-4ef16b23e6735d164d5f5cb6375132f83cd78d5b.tar.gz
guix-4ef16b23e6735d164d5f5cb6375132f83cd78d5b.zip
gnu: python-mccabe: Fix indentation.
* gnu/packages/python-xyz.scm (python-mccabe): Fix indentation.
Diffstat (limited to 'etc/guix-daemon.conf.in')
0 files changed, 0 insertions, 0 deletions
exibility in the importer....* guix/scripts/import/opam.scm: Pass all instances of --repo as a list to the importer. * guix/import/opam.scm (opam-fetch): Stop expecting "expanded" repositories and call get-opam-repository instead to keep values "symbolic" as long as possible and factorize. (get-opam-repository): Use the same repository source as CLI opam does (i.e. HTTP-served index.tar.gz instead of git repositories). (find-latest-version): Be more flexible on the repositories structure instead of expecting packages/PACKAGE-NAME/PACKAGE-NAME.VERSION/. * tests/opam.scm: Update the call to opam->guix-package since repo is now expected to be a list and remove the mocked get-opam-repository deprecated by the support for local folders by the actual implementation. * doc/guix.texi: Document the new semantics and valid arguments for the --repo option. Signed-off-by: Julien Lepiller <julien@lepiller.eu> Alice BRENON 2021-07-20import: opam: Emit new-style package inputs....* guix/import/opam.scm (opam->guix-package): Wrap INPUTS and NATIVE-INPUTS in 'list' instead of 'quasiquote'. (dependency-list->inputs): Return a list of symbols. * tests/opam.scm ("opam->guix-package"): Adjust accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sarah Morgensen