Skip to content

Commit 5977419

Browse files
committed
chore(guix): quality pass - fix stub/invalid names (#139)
1 parent a8c0f6f commit 5977419

1 file changed

Lines changed: 20 additions & 10 deletions

File tree

guix.scm

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,28 @@
1-
; SPDX-License-Identifier: MPL-2.0
2-
;; guix.scm — GNU Guix package definition for panic-attacker
3-
;; Usage: guix shell -f guix.scm
1+
;; SPDX-License-Identifier: MPL-2.0
2+
;; Guix development environment.
3+
;; Usage: guix shell -D -f guix.scm
44

55
(use-modules (guix packages)
66
(guix build-system gnu)
7-
(guix licenses))
7+
(guix licenses)
8+
(gnu packages base)
9+
(gnu packages bash)
10+
(gnu packages zig)
11+
(gnu packages base)
12+
(gnu packages java)
13+
(gnu packages node)
14+
(gnu packages rust)
15+
(gnu packages golang)
16+
(gnu packages python)
17+
(gnu packages cmake))
818

919
(package
10-
(name "panic-attacker")
20+
(name "panic-attack")
1121
(version "0.1.0")
1222
(source #f)
1323
(build-system gnu-build-system)
14-
(synopsis "panic-attacker")
15-
(description "panic-attacker — part of the hyperpolymath ecosystem.")
16-
(home-page "https://github.com/hyperpolymath/panic-attacker")
17-
(license ((@@ (guix licenses) license) "MPL-2.0"
18-
"https://github.com/hyperpolymath/palimpsest-license")))
24+
(inputs (list coreutils bash zig make openjdk node rust go python cmake))
25+
(synopsis "panic-attack")
26+
(description "panic-attack — part of the hyperpolymath ecosystem.")
27+
(home-page "https://github.com/hyperpolymath/panic-attack")
28+
(license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))

0 commit comments

Comments
 (0)