1
1
(use-modules (gnu packages)
2
2
((gnu packages bash) #:select (bash-minimal))
3
3
(gnu packages bison)
4
- ((gnu packages certs) #:select (nss-certs))
5
4
((gnu packages cmake) #:select (cmake-minimal))
6
5
(gnu packages commencement)
7
6
(gnu packages compression)
8
7
(gnu packages cross-base)
9
8
(gnu packages file)
10
9
(gnu packages gawk)
11
10
(gnu packages gcc)
12
- ((gnu packages installers) #:select (nsis-x86_64))
13
11
((gnu packages linux) #:select (linux-libre-headers-6.1))
14
12
(gnu packages llvm)
15
13
(gnu packages mingw)
@@ -233,36 +231,6 @@ chain for " target " development."))
233
231
((" ^install-others =.*$" )
234
232
(string-append " install-others = " out " /etc/rpc\n " )))))))))))))
235
233
236
- ; ; The sponge tool from moreutils.
237
- (define-public sponge
238
- (package
239
- (name " sponge" )
240
- (version " 0.69" )
241
- (source (origin
242
- (method url-fetch)
243
- (uri (string-append
244
- " https://git.joeyh.name/index.cgi/moreutils.git/snapshot/
245
- moreutils-" version " .tar.gz" ))
246
- (file-name (string-append " moreutils-" version " .tar.gz" ))
247
- (sha256
248
- (base32
249
- " 1l859qnzccslvxlh5ghn863bkq2vgmqgnik6jr21b9kc6ljmsy8g" ))))
250
- (build-system gnu-build-system)
251
- (arguments
252
- (list #:phases
253
- #~(modify-phases %standard-phases
254
- (delete 'configure )
255
- (replace 'install
256
- (lambda* (#:key outputs #:allow-other-keys)
257
- (let ((bin (string-append (assoc-ref outputs " out" ) " /bin" )))
258
- (install-file " sponge" bin)))))
259
- #:make-flags
260
- #~(list " sponge" (string-append " CC=" #$(cc-for-target)))))
261
- (home-page " https://joeyh.name/code/moreutils/" )
262
- (synopsis " Miscellaneous general-purpose command-line tools" )
263
- (description " Just sponge" )
264
- (license license:gpl2+)))
265
-
266
234
(packages->manifest
267
235
(append
268
236
(list ; ; The Basics
@@ -278,7 +246,6 @@ chain for " target " development."))
278
246
patch
279
247
gawk
280
248
sed
281
- sponge
282
249
; ; Compression and archiving
283
250
tar
284
251
gzip
@@ -293,12 +260,7 @@ chain for " target " development."))
293
260
; ; Git
294
261
git-minimal)
295
262
(let ((target (getenv " HOST" )))
296
- (cond ((string-suffix? " -mingw32" target)
297
- (list zip
298
- (make-mingw-pthreads-cross-toolchain " x86_64-w64-mingw32" )
299
- nsis-x86_64
300
- nss-certs))
301
- ((string-contains target " -linux-" )
263
+ (cond ((string-contains target " -linux-" )
302
264
(list bison
303
265
pkg-config
304
266
(list gcc-toolchain-13 " static" )
0 commit comments