aboutsummaryrefslogtreecommitdiff
path: root/gnu/artwork.scm
blob: 94c89143a65d7961654b538ff9c846c96d608170 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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
  (origin
    (method git-fetch)
    (uri (git-reference
          (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
          (commit "6998d30")))
    (sha256
     (base32
      "0k7j3pj9s3zqiqmfkapypssvzx3f12yr0cc2rbzxqfii0b4clp1j"))))

;;; artwork.scm ends here
nu: Don't use the store path in the .desktop file....Efraim Flashner 2019-02-18gnu: lsyncd: Don't use unstable tarball....Tobias Geerinckx-Rice 2019-02-14gnu: rclone: Update to 1.46....Tobias Geerinckx-Rice 2019-01-16gnu: Move sqlite to separate module....Ricardo Wurmus 2019-01-15gnu: Separate Python core packages from the rest....Ricardo Wurmus 2019-01-02gnu: qtsyncthingtray: Use 'git-fetch'....Efraim Flashner 2019-01-02gnu: owncloud-client: Update to 2.5.1.10973....Efraim Flashner 2018-12-03Merge branch 'core-updates'Ludovic Courtès 2018-12-02gnu: Add rclone (take 2)...Nicolas Goaziou 2018-11-27Revert "gnu: Add rclone."...Mark H Weaver 2018-11-27gnu: Add rclone....Nicolas Goaziou 2018-11-21gnu: casync: Fix build with glibc 2.28....Ludovic Courtès 2018-07-11gnu: owncloud-client: Update to 2.4.1....Efraim Flashner 2018-06-30gnu: Add casync....Ludovic Courtès 2018-03-16gnu: All snippets report errors using exceptions, else return #t....Mark H Weaver 2018-01-19gnu: Consistently Write ‘file system(s)’....Tobias Geerinckx-Rice 2018-01-10gnu: lsyncd: Update to 2.2.2....Tobias Geerinckx-Rice 2017-11-18gnu: owncloud-client: Update to 2.3.4....Efraim Flashner 2017-11-18gnu: owncloud-client: Don't check for updates....Efraim Flashner