guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/54: gnu: Add gash-core-utils.


From: guix-commits
Subject: 02/54: gnu: Add gash-core-utils.
Date: Fri, 22 Nov 2019 18:17:35 -0500 (EST)

janneke pushed a commit to branch wip-bootstrap
in repository guix.

commit 51841d962e80f448fd8054e5adbb687f19a5df74
Author: Jan Nieuwenhuizen <address@hidden>
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 1fd138f..98bfc67 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2019 Meiyo Peng <address@hidden>
 ;;; Copyright © 2019 Timothy Sample <address@hidden>
 ;;; Copyright © 2019 Mathieu Othacehe <address@hidden>
+;;; Copyright © 2019 Jan (janneke) Nieuwenhuizen <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -834,3 +835,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+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]