blob: 6c5dbbd90d47961c571bb6dafe371658440ddd69 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
(define extract
(command #:inputs (archive #:type 'File)
#:run "tar" "--extract" "--file" archive
#:outputs (extracted-file
#:type 'File
#:binding '((glob . "hello.txt")))))
(workflow ((archive #:type File))
(extract #:archive archive))
|