diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-12 12:57:54 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-12 12:57:54 +0200 |
commit | e6ff0dc3f8c22de54fb36f7d935677e3a96dff74 (patch) | |
tree | dcdf3597af72551adf6b991eae5ec197d8a37bfd | |
parent | cf5998c3555ccb8df7d3edd13366c88451683a23 (diff) |
The cmake/qt-build-system is weird now and it doesn't build with it.
-rw-r--r-- | digilent-agent.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/digilent-agent.scm b/digilent-agent.scm index c834550..fc67bcf 100644 --- a/digilent-agent.scm +++ b/digilent-agent.scm @@ -3,7 +3,7 @@ #:use-module (guix packages) #:use-module (guix gexp) #:use-module (guix git-download) - #:use-module (guix build-system qt) + #:use-module (guix build-system gnu) #:use-module (gnu packages qt)) (define-public digilent-agent @@ -23,7 +23,7 @@ (file-name (git-file-name name version)) (sha256 (base32 "1nzkfj5wpazpi3r49s47i923kbcbw34qp81b8s8l9v3p8cq8s2j0")))) - (build-system qt-build-system) + (build-system gnu-build-system) (native-inputs `(("qtserialport" ,qtserialport-5) ("qtbase" ,qtbase-5))) |