janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit ec7ee7536297430335ff6487a11f822173199a40
Author: Jan Nieuwenhuizen <[email protected]>
Date: Sun Sep 15 13:21:31 2019 +0200
gnu: Add gash-core-utils.
* gnu/packages/shells.scm (gash-core-utils): New variable.
---
gnu/packages/shells.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 0579c16..e3529b8 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2017 Arun Isaac <[email protected]>
;;; Copyright © 2019 Meiyo Peng <[email protected]>
;;; Copyright © 2019 Timothy Sample <[email protected]>
+;;; Copyright © 2019 Jan (janneke) Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -825,3 +826,32 @@ Scheme. It provides both the shell interface, as well as
a Guile
library for parsing shell scripts. Gash is designed to bootstrap Bash
as part of the Guix bootstrap process.")
(license gpl3+)))
+
+(define-public gash-core-utils
+ (let ((version "0.0")
+ (commit "b546f6968e63246b3a99322507e9c89c7d30f631")
+ (revision "35"))
+ (package
+ (name "gash-core-utils")
+ (version (string-append version "-" revision "." (string-take commit 7)))
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://gitlab.com/janneke/gash"
+ "/-/archive/" commit
+ "/gash-" commit ".tar.gz"))
+ (sha256
+ (base32
+ "0zf9ys3nxsyx6im25b0n4cj7mppj7y38pli33h7xpijj5nqlb9dv"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("guile" ,guile-2.2)
+ ("gash" ,gash)))
+ (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+))))