From cc2849bc8c76883d4cebc358c72f11114c51ab9a Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 17 Aug 2020 18:13:29 -0400 Subject: gnu: Add rust-cbindgen@0.14.1. * gnu/packages/rust-apps.scm (rust-cbindgen-0.14): New variable. --- gnu/packages/rust-apps.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'gnu/packages/rust-apps.scm') diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index d0960226c5..76be9acad1 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2020 Jakub Kądziołka ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Leo Famulari +;;; Copyright © 2020 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -292,6 +293,21 @@ gitignore rules.") "This package provides a tool for generating C/C++ bindings to Rust code.") (license license:mpl2.0))) +(define-public rust-cbindgen-0.14 + (package + (inherit rust-cbindgen) + (name "rust-cbindgen") + (version "0.14.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "cbindgen" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1ppwqbzydxlg9a24lynzfk60xrvqw4k31mpz1wrk6lbf88zf8nxi")))))) + (define-public rust-cbindgen-0.12 (package (inherit rust-cbindgen) -- cgit 1.4.1 From 0a2e80c369d4beb2073d9d604611fefbf268740d Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 10 Sep 2020 19:27:31 +0800 Subject: gnu: Add hexyl. * gnu/packages/rust-apps.scm (hexyl): New variable. Signed-off-by: Efraim Flashner --- gnu/packages/rust-apps.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/rust-apps.scm') diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 76be9acad1..0700167521 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Leo Famulari ;;; Copyright © 2020 Mark H Weaver +;;; Copyright © 2020 Gabriel Arazas ;;; ;;; This file is part of GNU Guix. ;;; @@ -205,6 +206,34 @@ While it does not seek to mirror all of find's powerful functionality, it provides defaults for 80% of the use cases.") (license (list license:expat license:asl2.0)))) +(define-public hexyl + (package + (name "hexyl") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "hexyl" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0sipag77196467idbznbk5q5lwhqz85zw7y1pwg9b27jxqyk04rp")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-ansi-term" ,rust-ansi-term-0.12) + ("rust-atty" ,rust-atty-0.2) + ("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/sharkdp/hexyl") + (synopsis "Command-line hex viewer") + (description + "This package provides a command line hex viewer. It uses a colored output +for distinguishing different kinds of bytes such as NULL bytes, printable ASCII +characters, ASCII whitespace characters, other ASCII characters and non-ASCII.") + (license (list license:expat license:asl2.0)))) + (define-public ripgrep (package (name "ripgrep") -- cgit 1.4.1