gnu: Add UFO: Alien Invasion.
[jackhill/guix/guix.git] / gnu / packages / debian.scm
CommitLineData
1779aaa0 1;;; GNU Guix --- Functional package management for GNU
8e1cd1a2 2;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
6729488f 3;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
8e1cd1a2 4;;;
1779aaa0
TGR
5;;; This file is part of GNU Guix.
6;;;
8e1cd1a2
EF
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages debian)
21 #:use-module ((guix licenses) #:prefix license:)
22 #:use-module (guix download)
5743ba49 23 #:use-module (guix git-download)
8e1cd1a2
EF
24 #:use-module (guix packages)
25 #:use-module (guix build-system gnu)
b3230c28
EF
26 #:use-module (guix build-system trivial)
27 #:use-module (gnu packages base)
28 #:use-module (gnu packages compression)
298a2c1e 29 #:use-module (gnu packages gnupg)
524e5fe5 30 #:use-module (gnu packages wget)
7111ea0d 31 #:use-module (gnu packages perl))
8e1cd1a2
EF
32
33(define-public debian-archive-keyring
34 (package
35 (name "debian-archive-keyring")
76513c94 36 (version "2019.1")
8e1cd1a2
EF
37 (source
38 (origin
f909e217
EF
39 (method git-fetch)
40 (uri (git-reference
41 (url "https://salsa.debian.org/release-team/debian-archive-keyring.git")
42 (commit version)))
43 (file-name (git-file-name name version))
8e1cd1a2
EF
44 (sha256
45 (base32
76513c94 46 "0bphwji3ywk1zi5bq8bhqk7l51fwjy1idwsw7zfqnxca8m5wvw1g"))))
8e1cd1a2
EF
47 (build-system gnu-build-system)
48 (arguments
49 '(#:test-target "verify-results"
50 #:parallel-build? #f ; has race conditions
51 #:phases
52 (modify-phases %standard-phases
53 (delete 'configure) ; no configure script
54 (replace 'install
55 (lambda* (#:key outputs #:allow-other-keys)
56 (let* ((out (assoc-ref outputs "out"))
57 (apt (string-append out "/etc/apt/trusted.gpg.d/"))
58 (key (string-append out "/share/keyrings/")))
59 (install-file "keyrings/debian-archive-keyring.gpg" key)
60 (install-file "keyrings/debian-archive-removed-keys.gpg" key)
61 (for-each (lambda (file)
62 (install-file file apt))
63 (find-files "trusted.gpg" "\\.gpg$")))
64 #t)))))
65 (native-inputs
66 `(("gnupg" ,gnupg)
67 ("jetring" ,jetring)))
68 (home-page "https://packages.qa.debian.org/d/debian-archive-keyring.html")
69 (synopsis "GnuPG archive keys of the Debian archive")
70 (description
71 "The Debian project digitally signs its Release files. This package
72contains the archive keys used for that.")
73 (license (list license:public-domain ; the keys
74 license:gpl2+)))) ; see debian/copyright
b3230c28
EF
75
76(define-public ubuntu-keyring
77 (package
78 (name "ubuntu-keyring")
4aa64e3a 79 (version "2018.09.18.1")
b3230c28
EF
80 (source
81 (origin
82 (method url-fetch)
83 (uri (string-append "https://launchpad.net/ubuntu/+archive/primary/"
84 "+files/" name "_" version ".tar.gz"))
85 (sha256
86 (base32
4aa64e3a 87 "0csx2n62rj9rxjv4y8qhby7l9rbybfwrb0406pc2cjr7f2yk91af"))))
b3230c28
EF
88 (build-system trivial-build-system)
89 (arguments
90 `(#:modules ((guix build utils))
91 #:builder (begin
92 (use-modules (guix build utils))
93 (let* ((out (assoc-ref %outputs "out"))
94 (apt (string-append out "/etc/apt/trusted.gpg.d/"))
95 (key (string-append out "/share/keyrings/")))
96 (setenv "PATH" (string-append
97 (assoc-ref %build-inputs "gzip") "/bin:"
98 (assoc-ref %build-inputs "tar") "/bin"))
99 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
100 (for-each (lambda (file)
101 (install-file file apt))
102 (find-files "." "ubuntu-[^am].*\\.gpg$"))
103 (for-each (lambda (file)
104 (install-file file key))
105 (find-files "." "ubuntu-[am].*\\.gpg$")))
106 #t)))
107 (native-inputs
108 `(("tar" ,tar)
109 ("gzip" ,gzip)))
110 (home-page "https://launchpad.net/ubuntu/+source/ubuntu-keyring")
111 (synopsis "GnuPG keys of the Ubuntu archive")
112 (description
113 "The Ubuntu project digitally signs its Release files. This package
114contains the archive keys used for that.")
115 (license (list license:public-domain ; the keys
116 license:gpl2+)))) ; see debian/copyright
298a2c1e
EF
117
118(define-public debootstrap
119 (package
120 (name "debootstrap")
6729488f 121 (version "1.0.123")
298a2c1e
EF
122 (source
123 (origin
5743ba49
EF
124 (method git-fetch)
125 (uri (git-reference
126 (url "https://salsa.debian.org/installer-team/debootstrap.git")
127 (commit version)))
128 (file-name (git-file-name name version))
298a2c1e 129 (sha256
6729488f 130 (base32 "0fr5ir8arzisx71jybbk4xz85waz50lf2y052nfimzh6vv9dx54c"))))
298a2c1e
EF
131 (build-system gnu-build-system)
132 (arguments
133 `(#:phases
134 (modify-phases %standard-phases
135 (delete 'configure)
136 (add-after 'unpack 'patch-source
137 (lambda* (#:key inputs outputs #:allow-other-keys)
138 (let ((out (assoc-ref outputs "out"))
7111ea0d 139 (tzdata (assoc-ref inputs "tzdata"))
298a2c1e
EF
140 (debian (assoc-ref inputs "debian-keyring"))
141 (ubuntu (assoc-ref inputs "ubuntu-keyring")))
142 (substitute* "Makefile"
143 (("/usr") "")
144 (("-o root -g root") "")
145 (("chown root.*") "\n"))
7111ea0d
EF
146 (substitute* '("scripts/etch"
147 "scripts/potato"
148 "scripts/sarge"
149 "scripts/sid"
150 "scripts/woody"
151 "scripts/woody.buildd")
298a2c1e
EF
152 (("/usr") debian))
153 (substitute* "scripts/gutsy"
154 (("/usr") ubuntu))
155 (substitute* "debootstrap"
156 (("=/usr") (string-append "=" out)))
90041e9c
VC
157 ;; Ensure PATH works both in guix and within the debian chroot
158 ;; workaround for: https://bugs.debian.org/929889
159 (substitute* "functions"
160 (("PATH=/sbin:/usr/sbin:/bin:/usr/bin")
161 "PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin"))
7111ea0d
EF
162 (substitute* (find-files "scripts" ".")
163 (("/usr/share/zoneinfo") (string-append tzdata "/share/zoneinfo")))
298a2c1e
EF
164 #t)))
165 (add-after 'install 'install-man-file
166 (lambda* (#:key outputs #:allow-other-keys)
167 (let ((out (assoc-ref outputs "out")))
168 (install-file "debootstrap.8"
169 (string-append out "/share/man/man8"))
7111ea0d
EF
170 #t)))
171 (add-after 'install 'wrap-executable
172 (lambda* (#:key outputs #:allow-other-keys)
173 (let ((debootstrap (string-append (assoc-ref outputs "out")
174 "/sbin/debootstrap"))
175 (path (getenv "PATH")))
176 (wrap-program debootstrap
177 `("PATH" ":" prefix (,path)))
298a2c1e
EF
178 #t))))
179 #:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
180 #:tests? #f)) ; no tests
181 (inputs
7111ea0d 182 `(("debian-keyring" ,debian-archive-keyring)
298a2c1e 183 ("ubuntu-keyring" ,ubuntu-keyring)
6941004f
MB
184 ("tzdata" ,tzdata)
185
186 ;; Called at run-time from various places, needs to be in PATH.
187 ("gnupg" ,gnupg)
188 ("wget" ,wget)))
7111ea0d
EF
189 (native-inputs
190 `(("perl" ,perl)))
5743ba49 191 (home-page "https://tracker.debian.org/pkg/debootstrap")
298a2c1e
EF
192 (synopsis "Bootstrap a basic Debian system")
193 (description "Debootstrap is used to create a Debian base system from
194scratch, without requiring the availability of @code{dpkg} or @code{apt}.
195It does this by downloading .deb files from a mirror site, and carefully
90041e9c 196unpacking them into a directory which can eventually be chrooted into.")
298a2c1e 197 (license license:gpl2)))
524e5fe5
JBN
198
199
200(define-public apt-mirror
201 (let ((commit "e664486a5d8947c2579e16dd793d762ea3de4202")
202 (revision "1"))
203 (package
204 (name "apt-mirror")
205 (version (git-version "0.5.4" revision commit))
206 (source (origin
207 (method git-fetch)
208 (uri (git-reference
209 (url "https://github.com/apt-mirror/apt-mirror/")
210 (commit commit)))
211 (file-name (git-file-name name version))
212 (sha256
213 (base32
214 "0qj6b7gldwcqyfs2kp6amya3ja7s4vrljs08y4zadryfzxf35nqq"))))
215 (build-system gnu-build-system)
216 (outputs '("out"))
217 (arguments
218 `(#:tests? #f
219 ;; sysconfdir is not PREFIXed in the makefile but DESTDIR is
220 ;; honored correctly; we therefore use DESTDIR for our
221 ;; needs. A more correct fix would involve patching.
222 #:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
223 "PREFIX=/")
224 #:phases (modify-phases %standard-phases (delete 'configure))))
225 (inputs
226 `(("wget" ,wget)
227 ("perl" ,perl)))
228 (home-page "http://apt-mirror.github.io/")
229 (synopsis "Script for mirroring a Debian repository")
230 (description
231 "apt-mirror is a small tool that provides the ability to
232selectively mirror Debian and Ubuntu GNU/Linux distributions or any
233other apt sources typically provided by open source developers.")
234 (license license:gpl2))))