summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/artwork.scm20
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/artwork.scm b/gnu/artwork.scm
index 94c89143a65..92498b8b239 100644
--- a/gnu/artwork.scm
+++ b/gnu/artwork.scm
@@ -1,5 +1,6 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
3;;; 4;;;
4;;; This file is part of GNU Guix. 5;;; This file is part of GNU Guix.
5;;; 6;;;
@@ -28,13 +29,16 @@
28;;; Code: 29;;; Code:
29 30
30(define %artwork-repository 31(define %artwork-repository
31 (origin 32 (let ((commit "6998d30425289b087c64f63e7415df2241e591db"))
32 (method git-fetch) 33 (origin
33 (uri (git-reference 34 (method git-fetch)
34 (url "git://git.savannah.gnu.org/guix/guix-artwork.git") 35 (uri (git-reference
35 (commit "6998d30"))) 36 (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
36 (sha256 37 (commit commit)))
37 (base32 38 (file-name (string-append "guix-artwork-" (string-take commit 7)
38 "0k7j3pj9s3zqiqmfkapypssvzx3f12yr0cc2rbzxqfii0b4clp1j")))) 39 "-checkout"))
40 (sha256
41 (base32
42 "0k7j3pj9s3zqiqmfkapypssvzx3f12yr0cc2rbzxqfii0b4clp1j")))))
39 43
40;;; artwork.scm ends here 44;;; artwork.scm ends here