aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/lisp.scm
diff options
context:
space:
mode:
authorGuillaume Le Vaillant <glv@posteo.net>2021-06-06 09:43:59 +0200
committerGuillaume Le Vaillant <glv@posteo.net>2021-06-06 09:46:04 +0200
commitda28abcfb04d9a4911264d2921512b0ad5acf8e6 (patch)
treee1400429ae8d5b7267d370bcd43de902851abbd7 /gnu/packages/lisp.scm
parent04beee1632a55963a05f227a6481e0912c390600 (diff)
downloadguix-da28abcfb04d9a4911264d2921512b0ad5acf8e6.tar.gz
guix-da28abcfb04d9a4911264d2921512b0ad5acf8e6.zip
gnu: sdrangel: Add SoapySDR support.
* gnu/packages/radio.scm (sdrangel)[inputs]: Add soapysdr. [arguments]: Update 'configure-flags'.
Diffstat (limited to 'gnu/packages/lisp.scm')
0 files changed, 0 insertions, 0 deletions
an>tests: guix-build.sh: Don't use hidden gcc for transformation tests....* tests/guix-build.sh: Do not try to rewrite gcc, it is hidden and so will not be rewritten, as per eee95b5a879b7096dffd533f24107cf8926b621e. Instead, try to build grep with coreutils rewritten to hello. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Josselin Poiret 2023-04-21tests: Fix checks for expected failures....Addresses <https://issues.guix.gnu.org/62406>. With 'set -e', a return status inverted with '!' does not cause the shell to exit immediately. Instead use '&& false' to indicate an expected failure. * tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment-container.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh, tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with '... && false' or `test ! ...` as appropriate. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Eric Bavier