mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: xorgxrdp: Switch to git source.
* gnu/packages/rdesktop.scm (xorgxrdp)[source]: Switch to git-fetch. [native-inputs]: Add autoconf, automake and libtool. Change-Id: I6ff0b7f76c750ab932aa3ffd5997c70479644b8d
This commit is contained in:
parent
5c69f08f2e
commit
c542139208
1 changed files with 10 additions and 6 deletions
|
@ -232,13 +232,14 @@ (define-public xorgxrdp
|
||||||
(name "xorgxrdp")
|
(name "xorgxrdp")
|
||||||
(version "0.10.2")
|
(version "0.10.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/neutrinolabs/xorgxrdp/releases/download/v"
|
(url "https://github.com/neutrinolabs/xorgxrdp")
|
||||||
version "/xorgxrdp-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"125zn8xzppmf07wgdm4kw2w8ri4fbraca8r59fgibb1m6dqggsxm"))))
|
"1dcxn0v88426j4n7irhy6h3qb21202v5xs1vr7j8xvs3sxihc2f7"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs (list check
|
(inputs (list check
|
||||||
imlib2
|
imlib2
|
||||||
|
@ -254,8 +255,11 @@ (define-public xorgxrdp
|
||||||
xdpyinfo
|
xdpyinfo
|
||||||
xorg-server
|
xorg-server
|
||||||
xrdp))
|
xrdp))
|
||||||
(native-inputs (list nasm
|
(native-inputs (list autoconf
|
||||||
|
automake
|
||||||
intltool
|
intltool
|
||||||
|
libtool
|
||||||
|
nasm
|
||||||
pkg-config
|
pkg-config
|
||||||
pixman))
|
pixman))
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Loading…
Reference in a new issue