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
708bc4'>tests: install: Fix gui-installed-desktop-os-encrypted test....Mathieu Othacehe 2020-06-30tests: install: Increase image size limit....Mathieu Othacehe 2020-06-26tests: install: Disable image compression....Mathieu Othacehe 2020-06-26tests: install: Fix marionette race condition....Mathieu Othacehe 2020-06-13image: Make 'find-image' non-monadic....Jan (janneke) Nieuwenhuizen 2020-05-29image: Do not use VM to create disk-images....Mathieu Othacehe 2020-05-20bootloader: grub: Allow booting from a Btrfs subvolume....Maxim Cournoyer 2020-05-05Merge branch 'master' into core-updatesMarius Bakke 2020-05-05image: Add a new API....Mathieu Othacehe 2020-05-03tests: install: Test a F2FS root file system....Danny Milosavljevic 2020-04-30Merge branch 'master' into core-updates...Marius Bakke 2020-04-29tests: install: Fix device usage....Mathieu Othacehe 2020-04-29tests: install: Fix gui-installed-os test....Mathieu Othacehe 2020-04-29tests: install: Increase virtual machine RAM....Mathieu Othacehe 2020-04-26tests: Add 'guile-final' to the installation test GC roots....Marius Bakke 2020-04-10tests: Run guided installation tests from an ISO image....Ludovic Courtès 2020-04-08tests: Mark VM images as non-substitutable....Ludovic Courtès 2020-03-26tests: install: Add %test-gui-installed-desktop-os-encrypted....Mathieu Othacehe 2020-03-22tests: install: Abort when one installation step fails....Mathieu Othacehe 2020-03-19tests: Accept manual installation scripts that exit with SIGTERM....Ludovic Courtès 2020-03-05tests: install: Add %test-gui-installed-os-encrypted....Mathieu Othacehe 2020-03-05tests: install: Add "gui-installed-os"....Ludovic Courtès 2020-02-22tests: Factorize LUKS passphrase....Ludovic Courtès 2020-01-19tests: install: "raid-root-os" test uses RAID-1 instead of RAID-0....Ludovic Courtès 2020-01-03tests: install: Test a JFS root file system....Tobias Geerinckx-Rice 2019-11-18tests: install: Fix typo....Maxim Cournoyer 2019-11-06tests: install: Increase root partition size....Ludovic Courtès 2019-07-06tests: encrypted-root-os: Increase root partition size....Ludovic Courtès 2019-06-24tests: Import (guix build utils) in the marionette....Ludovic Courtès 2019-05-15system: Add 'operating-system-with-gc-roots'....Ludovic Courtès 2019-04-14tests: separate-store-os: Increase root partition size....Ludovic Courtès 2019-03-25accounts: Add default value for the 'home-directory' field of <user-account>....Ludovic Courtès 2019-03-13Remove traces of "GuixSD"....Ludovic Courtès 2019-01-22gnu: Remove duplicate record fields....Ludovic Courtès 2019-01-17tests: Rename %test-encrypted-os to %test-encrypted-root-os....Mathieu Othacehe 2018-12-04tests: Increase root partitions size to 1.2G....Ludovic Courtès