Hi Guix, I want to build a series of packages using cuirass, I defined following sample definition as cuirass specification:
``` (list '((#:name . "pantherx-packages") (#:load-path-inputs . ("guix")) (#:package-path-inputs . ("guix")) (#:proc-input . "guix") (#:proc-file . "build-aux/cuirass/gnu-system.scm") (#:proc . cuirass-jobs) (#:proc-args . ((subset . "hello"))) (#:inputs . (((#:name . "guix") (#:url . "git://git.savannah.gnu.org/guix.git") (#:load-path . ".") (#:branch . "master") (#:no-compile? . #t)) )))) ``` but when I execute cuirass, I receive following error: ``` $ cuirass -S spec.scm -D test.db 2019-12-09T11:17:53 running Fibers on 4 kernel threads 2019-12-09T11:17:53 marking stale builds as "scheduled"... 2019-12-09T11:17:53 retrieving list of pending builds... 2019-12-09T11:17:53 heap: 11.00 MiB; threads: 10; file descriptors: 42 2019-12-09T11:17:53 canceling 0 stale builds 2019-12-09T11:17:53 restarting 0 pending builds 2019-12-09T11:17:53 building 0 derivations in batches of 200 2019-12-09T11:17:53 done with 0 derivations 2019-12-09T11:17:53 done with restarted builds 2019-12-09T11:17:53 fetching input 'guix' of spec 'pantherx-packages' 2019-12-09T11:17:54 fetched input 'guix' of spec 'pantherx-packages' (commit "a7a492899adac5047e4b11c77edd881ac1276c37") 2019-12-09T11:17:54 next evaluation in 300 seconds 2019-12-09T11:17:54 evaluating spec 'pantherx-packages' 2019-12-09T11:17:55 failed to evaluate spec 'pantherx-packages'; see /var/log/cuirass/evaluations/1.gz ``` and the contents of `/var/log/cuirass/evaluations/1.gz` is as follows: ``` $ cat /var/log/cuirass/evaluations/1 Backtrace: In ice-9/boot-9.scm: 2887:24 19 (_) 222:29 18 (map1 (((guix licenses) #:select (lgpl2.0+)) ((# #)) # …)) 222:29 17 (map1 (((guix packages)) ((guix download)) ((guix …)) …)) 222:29 16 (map1 (((guix download)) ((guix build-system cmake)) # …)) 222:29 15 (map1 (((guix build-system cmake)) ((guix # gnu)) (#) …)) 222:29 14 (map1 (((guix build-system gnu)) ((gnu packages)) (#) …)) 222:29 13 (map1 (((gnu packages)) ((gnu packages freedesktop)) # …)) 222:29 12 (map1 (((gnu packages freedesktop)) ((gnu packages …)) …)) 222:29 11 (map1 (((gnu packages glib)) ((gnu packages gtk)) (#) …)) 222:29 10 (map1 (((gnu packages gtk)) ((gnu packages gnuzilla)) …)) 222:17 9 (map1 (((gnu packages gnuzilla)) ((gnu packages #)) # …)) 2800:17 8 (resolve-interface (gnu packages gnuzilla) #:select _ # …) In ice-9/threads.scm: 390:8 7 (_ _) In ice-9/boot-9.scm: 2726:13 6 (_) In ice-9/threads.scm: 390:8 5 (_ _) In ice-9/boot-9.scm: 2994:20 4 (_) 2312:4 3 (save-module-excursion #<procedure 7f414b9feb40 at ice-…>) 3014:26 2 (_) In unknown file: 1 (primitive-load-path "gnu/packages/gnuzilla" #<procedur…>) In gnu/packages/gnuzilla.scm: 595:22 0 (_) gnu/packages/gnuzilla.scm:595:22: Throw to key `srfi-34' with args `(#<condition &message [message: "icecat-gnuzilla-fixes.patch: patch not found"] 7f414927e6c0>)'. Some deprecated features have been used. Set the environment variable GUILE_WARN_DEPRECATED to "detailed" and rerun the program to get more information. Set it to "no" to suppress this message. ``` it seems that `icecat-gnuzilla-fixes.patch` file is removed from repository, but cuirass still looks for it during spec evaluation. and this issue shows itself from this commit in guix repository: https://git.savannah.gnu.org/cgit/guix.git/commit/?id=34369f310319b040d18864ff7435b8ee5f9a26a6 could any one help about this issue? -- Regards Reza Alizadeh Majd PantherX Team