# GNU Guix --- Functional package management for GNU # Copyright © 2018 Oleg Pykhalov # # 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 . # Bash completion for guix-daemon command. _guix_daemon_complete () { local options="$(${COMP_WORDS[0]} --help 2> /dev/null \ | grep '^ \+-' \ | sed -e's/^.*--\([a-zA-Z0-9_-]\+\)\(=\?\).*/--\1\2/g')" compopt -o nospace COMPREPLY=($(compgen -W "$options" -- "${COMP_WORDS[${#COMP_WORDS[*]} - 1]}")) } complete -F _guix_daemon_complete guix-daemon eccdf6'>refslogtreecommitdiff
AgeCommit message (Expand)Author
2023-01-08gnu: python-iso3166: Update to 2.1.1....* gnu/packages/iso-codes.scm (python-iso3166): Update to 2.1.1. Liliana Marie Prikler
2022-07-16gnu: iso-codes: Remove input labels....* gnu/packages/iso-codes.scm (iso-codes/official)[native-inputs]: Remove conditional and labels. [inputs]: Remove. Marius Bakke
2022-05-29gnu: Add iso-codes variant for use within Guix....* gnu/packages/iso-codes.scm (iso-codes): Replace with hidden-package that inherits… (iso-codes/official): …this ‘new’ variable with its previous value. * gnu/packages/gtk.scm (gtk+)[inputs]: Use iso-codes/official to prevent mass rebuilds. Tobias Geerinckx-Rice
2022-05-31gnu: Remove python2-iso639....* gnu/packages/iso-codes.scm (python2-iso639): Delete variable. Maxim Cournoyer
2022-05-31gnu: Remove python2-iso3166....* gnu/packages/iso-codes.scm (python2-iso3166): Delete variable. Maxim Cournoyer