diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-29 22:13:13 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-29 22:43:48 +0100 |
commit | 2d8387c364a1c6bc9ede22922da54a7373d05ff1 (patch) | |
tree | f2016ac4f6011ff60c6482591271bab57ad0afe6 /gnu/packages/xdisorg.scm | |
parent | 25d09f609e28337a579fecbcb9b53012009d00c2 (diff) | |
download | guix-2d8387c364a1c6bc9ede22922da54a7373d05ff1.tar guix-2d8387c364a1c6bc9ede22922da54a7373d05ff1.tar.gz |
gnu: xclip: Fetch sources from git.
* gnu/packages/xdisorg.scm (xclip)[source]: Fetch from git.
Diffstat (limited to 'gnu/packages/xdisorg.scm')
-rw-r--r-- | gnu/packages/xdisorg.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 780fcd4c7c..0ca541d22a 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -131,14 +131,15 @@ program.") (name "xclip") (version "0.13") (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/astrand/xclip" - "/archive/" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0n7pczk9vv30zf8qfln8ba3hnif9yfdxg0m84djac469wc28hnya")))) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/astrand/xclip.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0q0hmvcjlv8arhh1pzhja2wglyj6n7z209jnpnzd281kqqv4czcs")))) (build-system gnu-build-system) (arguments '(#:tests? #f)) ;there is no test suite |