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
/guix/commit/gnu/tests/telephony.scm?id=fd109c5c09ea836dcd0c7294263cf93ef4dac79d'>tests: jami-provisioning: Fix test derivation name....Maxim Cournoyer 2022-09-23tests: telephony: Add extra packages to %jami-os for debugging....Maxim Cournoyer 2022-08-01gnu: telephony: Add a Jami test for a partially defined jami-account....Maxim Cournoyer 2022-06-10services: jami: Modernize to adjust to Shepherd 0.9+ changes....Maxim Cournoyer > 2022-12-07bootloaders: grub: Fix comment....Maxim Cournoyer 2022-12-01gnu: bootloader: Rework chaining, add grub-efi-netboot-removable-bootloader....Stefan 2022-09-08gnu: bootloader: grub: Add support for chain-loader....tiantian 2022-08-30bootloader: Add device-tree-support? option....Reza Alizadeh Majd 2022-06-24image: Add support for 32bit UEFI....Denis 'GNUtoo' Carikli 2022-06-06bootloader: grub: Add removable grub-efi bootloader option....Karl Hallsby 2022-01-13bootloader: grub: Fix serial mode....Mathieu Othacehe 2021-12-01gnu: system: Add LUKS2 support for the root file system....Josselin Poiret 2021-08-29Migrate to the new 'targets' field of bootloader-configuration....Maxim Cournoyer span>doc: Mention GNU Make as a requirement....Ludovic Courtès 2015-05-10build: Require Guile >= 2.0.7....Ludovic Courtès 2014-10-27doc: Add a note about optional GnuTLS dependency....Ian Denhardt 2014-10-06doc: Mention optional dependency on Guile-JSON....Ludovic Courtès 2014-09-02doc: Update "Installing Guix from Guix"....Ludovic Courtès 2014-08-26doc: Replace /nix/store with /gnu/store in README....John Darrington 2014-04-10doc: Mention 'gcc-toolchain' in README....Ludovic Courtès 2013-11-16doc: Improve "Installing Guix from Guix" section....Ludovic Courtès 2013-07-19doc: Improve build instructions in README and HACKING....Ludovic Courtès 2013-07-17doc: Mark 2.0.5 as being the minimum Guile version....Ludovic Courtès 2013-06-12doc: Describe the build procedure in more detail....Konrad Hinsen 2013-04-25doc: Add note on installing Guix from Guix....Ludovic Courtès 2012-12-14daemon: Build `nix-setuid-helper'....Ludovic Courtès 2012-12-06doc: Add new dependencies in `README'....Ludovic Courtès