diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-02-21 19:14:59 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-02-21 19:14:59 +0100 |
commit | ab396b447574dfc8982c7cdc5aa0e9efa73b3a0b (patch) | |
tree | 27d022205ddbcbc6393549ed5e5e60697133b5d3 | |
parent | d614f709bb0c352f872f39dc79016855c11b4ce4 (diff) |
digilent-agent: fix
-rw-r--r-- | digilent-agent.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/digilent-agent.scm b/digilent-agent.scm index b42c73d..2242f3f 100644 --- a/digilent-agent.scm +++ b/digilent-agent.scm @@ -6,25 +6,26 @@ #:use-module (gnu packages qt)) (define-public digilent-agent - (let ((commit-ref "ff1d7539d714f4e8883448475adb1955eec83706")) + (let ((revision "1") + (commit "ff1d7539d714f4e8883448475adb1955eec83706")) (package (name "digilent-agent") - (version commit-ref) + (version (git-version "1.0.1" revision commit)) (source (origin (method git-fetch) (uri (git-reference ;; It's my own fork, not the Digilent official one ;; because I removed tracking (url "https://github.com/ekaitz-zarraga/digilent-agent") - (commit commit-ref) + (commit commit) (recursive? #t))) (file-name (git-file-name name version)) (sha256 (base32 "1rm6iysdba9p2iqd1yig02dav4z0h3ppwcqy5chhd229ma4c7173")))) (build-system cmake-build-system) (native-inputs - `(("qtserialport" ,qtserialport) - ("qtbase" ,qtbase))) + `(("qtserialport" ,qtserialport-5) + ("qtbase" ,qtbase-5))) (arguments `(#:tests? #f #:phases |