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
/span>machine: Allow non-root users to deploy....Jakob L. Kreuze 2019-08-14remote: Build derivations appropriate for the remote's...Jakob L. Kreuze 2019-08-06machine: Rename 'system' field....Jakob L. Kreuze 2019-08-06doc: Add note about signing keys....Jakob L. Kreuze 2019-08-04build/cargo-build-system: Patch cargo checksums....Efraim Flashner 2019-07-26gexp: 'program-file' honors the current system and cross-compilation target....Ludovic Courtès 2019-07-26git: <git-checkout> allows tags in its 'commit' field....Ludovic Courtès 2019-07-25maint: Switch to Guile-JSON 3.x....Ludovic Courtès 2019-07-24doc: Warn about GPG warning....Leo Famulari 2019-07-23doc: Add example for generating a secret key with knot DNS....Julien Lepiller 2019-07-22doc: Update 'guix import json' example....Ludovic Courtès 2019-07-18doc: Correctly document 'host' field of <cuirass-configuration>....Ludovic Courtès 2019-07-18doc: Remove note about grafts being "beta"....Ludovic Courtès 2019-07-17doc: Reorder and clarify contributing instructions....Florian Pelz 2019-07-16doc: Add 'images' directory next to HTML pages....Ludovic Courtès 2019-07-15doc: note how to install git send-email...Arne Babenhauserheide 2019-07-15doc: Build a top-level index of the manuals....Ludovic Courtès 2019-07-15doc: Generalize build procedures of HTML indexes....Ludovic Courtès 2019-07-14build: Add node-build-system....Jelle Licht 2019-07-14channels: Add optional directory to channel metadata....Jan Nieuwenhuizen 2019-07-13doc: Increase VM memory size....Tobias Geerinckx-Rice 2019-07-13doc: Update gpg key fetching instructions....Tobias Geerinckx-Rice 2019-07-08scripts: environment: Add --no-cwd....Carl Dong 2019-07-07build: Add 'doc/build.scm' to build on-line copies of the manual....Ludovic Courtès 2019-07-06doc: Add section for 'guix deploy'....Jakob L. Kreuze 2019-06-29doc: Correct the software behind ci.guix.gnu.org....Tobias Geerinckx-Rice 2019-06-29doc: Remove references to hydra.gnu.org....Tobias Geerinckx-Rice 2019-06-24doc: Document use cases for NetworkManager with dnsmasq....Florian Pelz 2019-06-24doc: Use new upstream nomenclature for NetworkManager’s dnsmasq....Florian Pelz 2019-06-24doc: Recommend '-enable-kvm' for installing in a VM as well....Florian Pelz 2019-06-18doc: Replace invalid uses of @var with @code....Ludovic Courtès 2019-06-17doc: Fix typo....Gábor Boskovits 2019-06-15services: Include USB_ModeSwitch in %desktop-services....Florian Pelz 2019-06-15services: Add usb-modeswitch-service-type....Florian Pelz 2019-06-14doc: Fix typo....Björn Höfling 2019-06-12doc: Improve tarball extraction example.Julien Lepiller 2019-06-11doc: Update cargo-build-system parameter docs....Ivan Petkov 2019-06-10store: 'build-things' accepts derivation/output pairs....Ludovic Courtès 2019-06-10doc: Work around a po4a bug....Julien Lepiller 2019-06-10services: Add 'nix-service-type'....Oleg Pykhalov 2019-06-09doc: Fix typos....Tobias Geerinckx-Rice 2019-06-07pack: Add '--entry-point'....Ludovic Courtès 2019-06-07services: Add Singularity....Ludovic Courtès 2019-06-06services: Add auditd....Danny Milosavljevic