about summary refs log tree commit diff
path: root/e2e-tests/tools/capture-output-file.scm
blob: 80b4654d37eb4663c36b81155347f32a9934e21d (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))