diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-11-29 17:02:27 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-11-29 17:02:27 +0800 |
commit | c5421392081944d43db18fe04eafecec521f994a (patch) | |
tree | 8cc38611cc3c0b4247003e24b72a42064c1ae143 /gnu/packages | |
parent | 5c69f08f2e9f1c31ea1d88c39875237208ddfa03 (diff) |
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
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/rdesktop.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/rdesktop.scm b/gnu/packages/rdesktop.scm index 0686f29f08..8024156417 100644 --- a/gnu/packages/rdesktop.scm +++ b/gnu/packages/rdesktop.scm @@ -232,13 +232,14 @@ variety of RDP clients: (name "xorgxrdp") (version "0.10.2") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/neutrinolabs/xorgxrdp/releases/download/v" - version "/xorgxrdp-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/neutrinolabs/xorgxrdp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "125zn8xzppmf07wgdm4kw2w8ri4fbraca8r59fgibb1m6dqggsxm")))) + "1dcxn0v88426j4n7irhy6h3qb21202v5xs1vr7j8xvs3sxihc2f7")))) (build-system gnu-build-system) (inputs (list check imlib2 @@ -254,8 +255,11 @@ variety of RDP clients: xdpyinfo xorg-server xrdp)) - (native-inputs (list nasm + (native-inputs (list autoconf + automake intltool + libtool + nasm pkg-config pixman)) (arguments |