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
a href='/guix/commit/gnu/packages/ocaml.scm?id=63df962225a92a4a51dbc31b6e41bc15fe0962b9'>gnu: Add camlboot....* gnu/packages/ocaml.scm (camlboot): New variable. Julien Lepiller 2021-03-02gnu: ocaml-llvm: Move to (gnu packages llvm)....Commit 8f710cc598fb675d267f49a82cffc197f03ad52c introduced a circular dependency between ocaml.scm and llvm.scm by referring to 'llvm' from the top level of ocaml.scm. This fixes it. * gnu/packages/ocaml.scm (make-ocaml-llvm, ocaml-llvm) (ocaml-llvm-9, ocaml-llvm-10, ocaml-llvm-11): Move to... * gnu/packages/llvm.scm: ... here. Ludovic Courtès 2021-02-28gnu: ocaml-xmlm: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-xmlm)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-uutf: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-uutf)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-uuidm: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-uuidm)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-topkg: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-topkg)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-rresult: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-rresult)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-react: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-react)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-mtime: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-mtime)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-logs: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-logs)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-jsonm: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-jsonm)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-fpath: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-fpath)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-fmt: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-fmt)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-dose3: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-dose3)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-cudf: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-cudf)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-cmdliner: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-cmdliner)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-bos: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-bos)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: ocaml-astring: Use HTTPS home page URI....* gnu/packages/ocaml.scm (ocaml-astring)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-22gnu: ocaml-llvm: Remove duplicate package....Commit 8f710cc598fb675d267f49a82cffc197f03ad52c introduced a duplicate ocaml-llvm@9.0.1 package, which was flagged by a test failure in tests/packages.scm. * gnu/packages/ocaml.scm (make-ocaml-llvm): Define as 'mlambdaq'. Ludovic Courtès