janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit afca409fe4b96b7dc8f2d3b3fddf9a79f3291352
Author: Jan Nieuwenhuizen <[email protected]>
Date: Sun Sep 22 15:27:59 2019 +0200
bootstrap: Add gash-core-utils-boot.
* gnu/packages/shells.scm (gash-core-utils-boot): New variable.
---
gnu/packages/shells.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 3b7a924..3ea0792 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -901,3 +901,16 @@ as part of the Guix bootstrap process.")
(description "Gash Core Utils provides core GNU utilities in Guile
Scheme as bootstrappable replacement for GNU coreutils&co.")
(license gpl3+))))
+
+(define-public gash-core-utils-boot
+ (package
+ (inherit gash-core-utils)
+ (name "gash-core-utils-boot")
+ (inputs
+ `(("guile" ,guile-2.0)
+ ("gash" ,gash-boot)))
+ (home-page "https://gitlab.com/janneke/gash-core-utils")
+ (synopsis "Bootstrappable replacement of core GNU utilities in Guile
Scheme")
+ (description "Gash Core Utils provides core GNU utilities in Guile
+Scheme as bootstrappable replacement for GNU coreutils&co.")
+ (license gpl3+)))