blob: b42c73d4e9dbf7ecd5219a2f14d542a56abb15ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
(define-module (digilent-agent)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system cmake)
#:use-module (gnu packages qt))
(define-public digilent-agent
(let ((commit-ref "ff1d7539d714f4e8883448475adb1955eec83706"))
(package
(name "digilent-agent")
(version commit-ref)
(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)
(recursive? #t)))
(file-name (git-file-name name version))
(sha256
(base32 "1rm6iysdba9p2iqd1yig02dav4z0h3ppwcqy5chhd229ma4c7173"))))
(build-system cmake-build-system)
(native-inputs
`(("qtserialport" ,qtserialport)
("qtbase" ,qtbase)))
(arguments
`(#:tests? #f
#:phases
(modify-phases
%standard-phases
(replace
'configure
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
; Need o overwrite stuff in digilent-agent.pro from:
; 8< ----
; TARGET = digilent-agent
; target.path = /usr/bin
;
; wwwRoot.path = /usr/share/digilent-agent/www
; wwwRoot.files = www/*
;
; INSTALLS += target
; INSTALLS += wwwRoot
; ---- >8
; Where it says /usr/ we need to add our output dir
(substitute* "digilent-agent.pro"
(("\\/usr\\/bin")
(string-append out "/bin"))
(("\\/usr\\/share")
(string-append out "/share")))
(substitute* "src/main.cpp"
(("\\/usr\\/share")
(string-append out "/share")))
(invoke "qmake")))))))
(synopsis "Digilent connector for Digilent devices such as OpenScope
MZ")
(description "The Digilent Agent is a service that runs in the system
tray and enables browser based applications to communicate with
Digilent hardware.")
(home-page
"https://reference.digilentinc.com/reference/software/digilent-agent/start")
(license license:lgpl3))))
|