Skip to content

Commit 4c835a6

Browse files
committed
cleanup 02
1 parent efdbca1 commit 4c835a6

File tree

1 file changed

+1
-39
lines changed

1 file changed

+1
-39
lines changed

contrib/guix/manifest.scm

Lines changed: 1 addition & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
(use-modules (gnu packages)
22
((gnu packages bash) #:select (bash-minimal))
33
(gnu packages bison)
4-
((gnu packages certs) #:select (nss-certs))
54
((gnu packages cmake) #:select (cmake-minimal))
65
(gnu packages commencement)
76
(gnu packages compression)
87
(gnu packages cross-base)
98
(gnu packages file)
109
(gnu packages gawk)
1110
(gnu packages gcc)
12-
((gnu packages installers) #:select (nsis-x86_64))
1311
((gnu packages linux) #:select (linux-libre-headers-6.1))
1412
(gnu packages llvm)
1513
(gnu packages mingw)
@@ -233,36 +231,6 @@ chain for " target " development."))
233231
(("^install-others =.*$")
234232
(string-append "install-others = " out "/etc/rpc\n")))))))))))))
235233

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-
266234
(packages->manifest
267235
(append
268236
(list ;; The Basics
@@ -278,7 +246,6 @@ chain for " target " development."))
278246
patch
279247
gawk
280248
sed
281-
sponge
282249
;; Compression and archiving
283250
tar
284251
gzip
@@ -293,12 +260,7 @@ chain for " target " development."))
293260
;; Git
294261
git-minimal)
295262
(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-")
302264
(list bison
303265
pkg-config
304266
(list gcc-toolchain-13 "static")

0 commit comments

Comments
 (0)