summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Darrington <jmd@gnu.org>2014-10-21 21:46:24 +0200
committerJohn Darrington <jmd@gnu.org>2014-10-27 11:17:21 +0100
commiteeb3703db5159c159bb4ad660e2ff054c75396e2 (patch)
tree2b7fde9feb5f8cd6fb436f49561b2deda6ca4a3f
parent4e2f98c5394c515a5849be3aad6d06e8ad89807b (diff)
gnu: Add miscfiles
* gnu/packages/miscfiles.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
-rw-r--r--gnu-system.am1
-rw-r--r--gnu/packages/miscfiles.scm44
2 files changed, 45 insertions, 0 deletions
diff --git a/gnu-system.am b/gnu-system.am
index 54b6a782fab..c0a3a20119c 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -168,6 +168,7 @@ GNU_SYSTEM_MODULES = \
168 gnu/packages/mc.scm \ 168 gnu/packages/mc.scm \
169 gnu/packages/mcrypt.scm \ 169 gnu/packages/mcrypt.scm \
170 gnu/packages/messaging.scm \ 170 gnu/packages/messaging.scm \
171 gnu/packages/miscfiles.scm \
171 gnu/packages/mit-krb5.scm \ 172 gnu/packages/mit-krb5.scm \
172 gnu/packages/moe.scm \ 173 gnu/packages/moe.scm \
173 gnu/packages/mpd.scm \ 174 gnu/packages/mpd.scm \
diff --git a/gnu/packages/miscfiles.scm b/gnu/packages/miscfiles.scm
new file mode 100644
index 00000000000..e9ee8ad42e2
--- /dev/null
+++ b/gnu/packages/miscfiles.scm
@@ -0,0 +1,44 @@
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright 2014 John Darrington <jmd@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages miscfiles)
20 #:use-module (guix licenses)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu))
24
25(define-public miscfiles
26 (package
27 (name "miscfiles")
28 (version "1.5")
29 (source
30 (origin
31 (method url-fetch)
32 (uri (string-append "mirror://gnu/" name "/" name "-"
33 version ".tar.gz"))
34 (sha256
35 (base32
36 "005588vfrwx8ghsdv9p7zczj9lbc9a3r4m5aphcaqv8gif4siaka"))))
37 (build-system gnu-build-system)
38 (home-page "https://www.gnu.org/software/miscfiles/")
39 (synopsis "Collection of miscellaneous text files")
40 (description "Miscfiles is a collection of files not of crucial importance
41for system administration or operation, but which have come to be common on
42various systems over the years. It includes data files for country codes,
43airport codes, currency information, and so on.")
44 (license gpl2+)))