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
>Xinglu Chen 2021-06-14gnu: Rename qtbase to qtbase-5....Maxim Cournoyer 2021-05-05gnu: Add texlive-amsfonts/patched....Ricardo Wurmus 2021-05-04gnu: Add texlive-eurosym....Ricardo Wurmus 2021-05-04gnu: Add texlive-tcolorbox....Ricardo Wurmus 2021-05-04gnu: Add texlive-adjustbox....Ricardo Wurmus 2021-05-04gnu: Add texlive-collectbox....Ricardo Wurmus 2021-05-04gnu: Add texlive-storebox....Ricardo Wurmus 2021-05-04gnu: Add texlive-ifoddpage....Ricardo Wurmus 2021-05-04gnu: Add texlive-titling....Ricardo Wurmus 2021-05-03gnu: Add texlive-default-updmap.cfg....Ricardo Wurmus 2021-05-03gnu: Add texlive-babel-swedish....Ricardo Wurmus 2021-05-03gnu: Add texlive-pagenote....Ricardo Wurmus 2021-05-03gnu: Add texlive-ifmtarg....Ricardo Wurmus 2021-05-03gnu: Add texlive-morefloats....Ricardo Wurmus 2021-05-03gnu: Add texlive-sectsty....Ricardo Wurmus 2021-04-15gnu: Add texlive-kastrup....Paul Garlick 2021-04-14gnu: Add texlive-ly1....Paul Garlick 2021-04-13gnu: Add texlive-xcharter....Paul Garlick 2021-04-12gnu: Add texlive-newtx....Paul Garlick 2021-04-09gnu: Add texlive-cabin....Paul Garlick 2021-04-08gnu: Add texlive-mweights....Paul Garlick 2021-04-07gnu: Add texlive-fontaxes....Paul Garlick 2021-04-01gnu: Fix packages that were importing Guile modules from the host....Ludovic Courtès 2021-04-01gnu: Add texlive-utopia....Paul Garlick 2021-03-31gnu: Add texlive-fourier....Paul Garlick 2021-03-30gnu: Add texlive-bera....Paul Garlick 2021-03-29gnu: Add texlive-mathdesign....Paul Garlick 2021-03-23gnu: texlive-latex-base: Fix compilation on powerpc64le*....Leo Le Bouter 2021-03-23gnu: texlive-bin: Fix compilation on powerpc64le*....Leo Le Bouter 2021-02-16gnu: texlive-arev: Fix typo....Paul Garlick 2021-02-16gnu: Add texlive-arev....Paul Garlick 2021-02-11gnu: lyx: Update to 2.3.6.1....Nicolas Goaziou