aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; 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
-19doc: Normalize language codes in menu URLs....Ludovic Courtès 2022-01-19doc: Make the HTML language menu disappear on narrow screens....Ludovic Courtès 2022-01-18doc: Add a language menu in the HTML manual....Ludovic Courtès 2022-01-18doc: Factorize 'language-code->native-name'....Ludovic Courtès 2022-01-18doc: Extract (localization) module....Ludovic Courtès 2022-01-15doc: Remove now unnecessary workaround....Ludovic Courtès 2021-12-13Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-12-13doc: Handle '&nbsp' when syntax-highlighting HTML....Ludovic Courtès 2021-10-31Merge remote-tracking branch 'origin/master' into core-updates-frozenEfraim Flashner 2021-10-28doc: Allow offloading of the expensive derivations....Ludovic Courtès 2021-07-18Merge branch 'master' into core-updatesLudovic Courtès 2021-07-09doc: Build manual translations with 'guile-3.0-latest'....Ludovic Courtès 2021-05-09Merge branch 'master' into core-updates...Marius Bakke 2021-04-20doc: Clarify further the distinction between the web-based manuals....Leo Famulari 2021-04-18doc: Build the French HTML cookbook....Julien Lepiller 2021-03-24Merge remote-tracking branch 'origin/master' into core-updatesEfraim Flashner 2021-03-20doc: Remove the guile-lib/htmlprag-fixed package....Maxim Cournoyer 2021-01-29gnu: Replace all uses of texlive-union by texlive-updmap.cfg....Maxim Cournoyer 2020-10-21doc: Cookbook links to /manual/devel, not /manual....Ludovic Courtès 2020-10-19doc: Produce stylable HTML for @deftp, @deffn, etc....Ludovic Courtès 2020-10-17doc: Generate cross-references in code snippets to the Guile manual....Ludovic Courtès 2020-10-17doc: Allow code snippets in the cookbook to link to the manual....Ludovic Courtès 2020-10-17doc: Move manual index creation to a separate derivation....Ludovic Courtès 2020-10-17doc: Remove 'build.scm' from the source of the manual....Ludovic Courtès 2020-09-04doc: Syntax highlighting now handles @var within @lisp....Ludovic Courtès 2020-05-25doc: Remove one use of 'file-append*'....Ludovic Courtès 2020-05-18doc: Inherit md5.scm fix in custom 'guile-lib' variant....Ludovic Courtès