about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2024-11-19 11:55:33 +0900
committerNguyễn Gia Phong <cnx@loang.net>2024-11-19 11:55:33 +0900
commit9973c0e6bacb283ba401b5fe42f7fec0dc84f5a0 (patch)
tree93fe74bdd2e9ea122ba92a2692c25a09e087293c
parentdf70fb6e36c094265ed8f20886ad01a0de903693 (diff)
downloadloftix-9973c0e6bacb283ba401b5fe42f7fec0dc84f5a0.tar.gz
Fix module imports
-rw-r--r--loftix/fuzzing.scm3
-rw-r--r--loftix/synthesis.scm4
2 files changed, 4 insertions, 3 deletions
diff --git a/loftix/fuzzing.scm b/loftix/fuzzing.scm
index 3319f87..65fd6b7 100644
--- a/loftix/fuzzing.scm
+++ b/loftix/fuzzing.scm
@@ -16,7 +16,8 @@
 ;;; You should have received a copy of the GNU General Public License
 ;;; along with Loftix.  If not, see <http://www.gnu.org/licenses/>.
 
-(use-modules (gnu packages instrumentation)
+(use-modules (gnu packages debug)
+             (gnu packages instrumentation)
              (gnu packages man)
              (gnu packages m4)
              (guix build-system gnu)
diff --git a/loftix/synthesis.scm b/loftix/synthesis.scm
index fb8a7cf..8c6a1ba 100644
--- a/loftix/synthesis.scm
+++ b/loftix/synthesis.scm
@@ -16,10 +16,10 @@
 ;;; You should have received a copy of the GNU General Public License
 ;;; along with Loftix.  If not, see <http://www.gnu.org/licenses/>.
 
-(use-modules (gnu packages python)
-             (gnu packages python-build)
+(use-modules (gnu packages python-build)
              (gnu packages python-xyz)
              (guix build-system pyproject)
+             (guix build-system python)
              (guix download)
              ((guix licenses) #:prefix license:)
              (guix packages))