summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2017-06-03 19:48:52 -0400
committerLeo Famulari <leo@famulari.name>2017-06-07 15:58:16 -0400
commit94db92f78ec9c849f9c8da05d4d35356909f9fbe (patch)
treeeed8fd20b4e84de453b978d3b86ab8c2dc73822b /gnu
parent4679dd6967c21e21c740cd88e17191b8e2aac5ee (diff)
artwork: Use a descriptive name for the source directory.
* gnu/artwork.scm (%artwork-repository): Set a descriptive file-name and use the full commit hash when fetching.
Diffstat (limited to 'gnu')
-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