diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-19 14:18:14 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-19 14:18:14 +0900 |
commit | 083d704a9b7770b9a171dbbe659072e27b1693e8 (patch) | |
tree | 4a9efc46d9ed14833baa319c9dfb547dfd3b618f | |
parent | a49c13b69d56b3c2ba2a5ff2c814980ac9be2570 (diff) | |
download | loftix-083d704a9b7770b9a171dbbe659072e27b1693e8.tar.gz |
Add missing module for search-patches
-rw-r--r-- | loftix/fuzzing.scm | 1 | ||||
-rw-r--r-- | loftix/patching.scm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/loftix/fuzzing.scm b/loftix/fuzzing.scm index e95b51a..e5f6178 100644 --- a/loftix/fuzzing.scm +++ b/loftix/fuzzing.scm @@ -17,6 +17,7 @@ ;;; along with Loftix. If not, see <http://www.gnu.org/licenses/>. (define-module (loftix fuzzing) + #:use-module (gnu packages) #:use-module (gnu packages debug) #:use-module (gnu packages instrumentation) #:use-module (gnu packages man) diff --git a/loftix/patching.scm b/loftix/patching.scm index b2de537..0b6c74e 100644 --- a/loftix/patching.scm +++ b/loftix/patching.scm @@ -17,6 +17,7 @@ ;;; along with Loftix. If not, see <http://www.gnu.org/licenses/>. (define-module (loftix patching) + #:use-module (gnu packages) #:use-module (gnu packages compression) #:use-module (gnu packages elf) #:use-module (gnu packages engineering) |