;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Ludovic Courtès ;;; ;;; 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 . (define-module (test-debug-link) #:use-module (guix elf) #:use-module (guix build utils) #:use-module (guix build debug-link) #:use-module (guix gexp) #:use-module (guix store) #:use-module (guix tests)
aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-11-08 17:41:08 +0100
committerRicardo Wurmus <rekado@elephly.net>2017-11-08 17:41:08 +0100
commit34260a10d70c4eae87fc48419b7134fbbb4bbd30 (patch)
tree3f7a7ea2318598741eedb12bfbda4624e64c4fa9 /tests
parente5c17b8d9d3489ff8c0b03b6ffbf7ce4f9f323d0 (diff)
downloadguix-34260a10d70c4eae87fc48419b7134fbbb4bbd30.tar.gz
guix-34260a10d70c4eae87fc48419b7134fbbb4bbd30.zip
gnu: miso: Use pypi-uri.
* gnu/packages/bioinformatics.scm (miso)[source]: Use pypi-uri.
Diffstat (limited to 'tests')
0 files changed, 0 insertions, 0 deletions
et-debuglink-crc "exe" #$debug) (call-with-values (lambda () (elf-debuglink (call-with-input-file "exe" read-elf))) (lambda (file crc) (call-with-output-file #$output (lambda (port) (write (list file crc) port))))))))) (mlet* %store-monad ((drv (gexp->derivation "debuglink" exp)) (x (built-derivations (list drv)))) (call-with-input-file (derivation->output-path drv) (lambda (port) (return (match (read port) (("exe.debug" crc) (= crc (debuglink-crc32 (open-input-string "a")))) (x (pk 'fail x #f))))))))) (test-end "debug-link")