diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-29 22:13:32 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-29 22:43:49 +0100 |
commit | ab3159f89dad9fedd808e1f884c5fc93cb91bf47 (patch) | |
tree | e99f12688396310a9161494535b59f851c3f5785 /gnu | |
parent | 2d8387c364a1c6bc9ede22922da54a7373d05ff1 (diff) |
gnu: maim: Fetch sources from git.
* gnu/packages/xdisorg.scm (maim)[source]: Fetch from git.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xdisorg.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 0ca541d22a..257b39609b 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -530,14 +530,14 @@ selection's dimensions to stdout.") (name "maim") (version "5.5.2") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/naelstrof/maim/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/naelstrof/maim.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "14zdhsx1cndg5m8wbv1rqmza7wgknwfj5h0knzxg3p2jkjw66i95")))) + "14mfxdm39kc5jk8wysrzx05ag2g4sk9l24i8m5pzqn8j611150v3")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target |