aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/cmake-fix-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/patches/cmake-fix-tests.patch')
0 files changed, 0 insertions, 0 deletions
;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu artwork) #:use-module (guix packages) #:use-module (guix git-download) #:export (%artwork-repository)) ;;; Commentary: ;;; ;;; Common place for the definition of the Guix artwork repository. ;;; ;;; Code: (define %artwork-repository (let ((commit "4c7f2ce6428a63e202cd2a9474a06f68a946934d")) (origin (method git-fetch) (uri (git-reference (url "https://git.savannah.gnu.org/git/guix/guix-artwork.git") (commit commit))) (file-name (string-append "guix-artwork-" (string-take commit 7) "-checkout")) (sha256 (base32 "1rl569759q9wm1dxn7nkq3873d2k92giic7aa6jwzwr3n16prc7y"))))) ;;; artwork.scm ends here