guix-commits
[Top][All Lists]
Advanced

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

01/45: gnu: Add rust-ansi-term-0.11.


From: guix-commits
Subject: 01/45: gnu: Add rust-ansi-term-0.11.
Date: Wed, 23 Oct 2019 03:49:10 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit e99fbcad344367d8b6acee13f1f6dfbbcb8a1377
Author: Efraim Flashner <address@hidden>
Date:   Wed Oct 23 09:39:28 2019 +0300

    gnu: Add rust-ansi-term-0.11.
    
    * gnu/packages/rust-cbindgen.scm (rust-ansi-term-0.11): New file, new
    hidden variable.
    * gnu/local.mk (GNU_SYSTEM_MODULES): Register it.
---
 gnu/local.mk                   |  1 +
 gnu/packages/rust-cbindgen.scm | 44 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/gnu/local.mk b/gnu/local.mk
index 9b9a215..d563ecc 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -425,6 +425,7 @@ GNU_SYSTEM_MODULES =                                \
   %D%/packages/ruby.scm                                \
   %D%/packages/rush.scm                                \
   %D%/packages/rust.scm                                \
+  %D%/packages/rust-cbindgen.scm               \
   %D%/packages/samba.scm                       \
   %D%/packages/sagemath.scm                    \
   %D%/packages/sawfish.scm                     \
diff --git a/gnu/packages/rust-cbindgen.scm b/gnu/packages/rust-cbindgen.scm
new file mode 100644
index 0000000..aab4a81
--- /dev/null
+++ b/gnu/packages/rust-cbindgen.scm
@@ -0,0 +1,44 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2019 Efraim Flashner <address@hidden>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages rust-cbindgen)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system cargo))
+
+(define rust-ansi-term-0.11
+  (package
+    (name "rust-ansi-term")
+    (version "0.11.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "ansi_term" version))
+        (file-name (string-append name "-" version ".crate"))
+        (sha256
+         (base32
+          "16wpvrghvd0353584i1idnsgm0r3vchg8fyrm0x8ayv1rgvbljgf"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/ogham/rust-ansi-term";)
+    (synopsis "Library for ANSI terminal colours and styles")
+    (description
+     "This is a library for controlling colours and formatting, such as red 
bold
+text or blue underlined text, on ANSI terminals.")
+    (properties '((hidden? . #t)))
+    (license license:expat)))



reply via email to

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