aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/haskell-web.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2023-09-24 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2023-10-15 02:00:00 +0200
commit3145968e3894a691778c23cab23462a5f7a724ca (patch)
treecbd87d3e97b0009d31f6233d3259b6762266302c /gnu/packages/haskell-web.scm
parenta36e595eec7b32feff9f32de2c6547ee1b74bcd1 (diff)
downloadguix-3145968e3894a691778c23cab23462a5f7a724ca.tar.gz
guix-3145968e3894a691778c23cab23462a5f7a724ca.zip
gnu: isc-dhcp: Remove unused net-tools input.
* gnu/packages/admin.scm (isc-dhcp)[arguments]: Don't wrap the ‘dhclient-script’ PATH with net-tools. [inputs]: Remove net-tools altogether.
Diffstat (limited to 'gnu/packages/haskell-web.scm')
0 files changed, 0 insertions, 0 deletions
package-derivation package-native-search-paths)) #:use-module (gnu packages bootstrap) #:use-module (ice-9 match) #:use-module (srfi srfi-1) #:use-module (srfi srfi-64)) ;; Test the higher-level builders. (define %store (open-connection-for-tests)) (define url-fetch* (store-lower url-fetch)) (test-begin "builders") (unless (network-reachable?) (test-skip 1)) (test-assert "url-fetch" (let* ((url '("http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz" "ftp://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz")) (hash (nix-base32-string->bytevector "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6")) (drv (url-fetch* %store url 'sha256 hash #:guile %bootstrap-guile)) (out-path (derivation->output-path drv))) (and (build-derivations %store (list drv)) (file-exists? out-path) (valid-path? %store out-path)))) (test-assert "url-fetch, file" (let* ((file (search-path %load-path "guix.scm")) (hash (call-with-input-file file port-sha256)) (out (url-fetch* %store file 'sha256 hash))) (and (file-exists? out) (valid-path? %store out)))) (test-assert "url-fetch, file URI" (let* ((file (search-path %load-path "guix.scm")) (hash (call-with-input-file file port-sha256)) (out (url-fetch* %store (string-append "file://" (canonicalize-path file)) 'sha256 hash))) (and (file-exists? out) (valid-path? %store out)))) (test-assert "gnu-build-system" (build-system? gnu-build-system)) (test-end "builders")