[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49969] [PATCH v7 1/7] gnu: crates-io: Add rust-enquote 1.0.3 and ru
From: |
muradm |
Subject: |
[bug#49969] [PATCH v7 1/7] gnu: crates-io: Add rust-enquote 1.0.3 and rust-pam-sys 0.5.6. |
Date: |
Wed, 15 Sep 2021 19:29:52 +0300 |
* gnu/packages/crates-io.scm (rust-enquote-1): New variable
* gnu/packages/crates-io.scm (rust-pam-sys-0.5): New variable
---
gnu/packages/crates-io.scm | 49 ++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2b91d4b871..83a8642448 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2021 Antero Mejr <antero@kodmin.com>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2021 muradm <mail@muradm.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -55,6 +56,7 @@
#:use-module (gnu packages glib)
#:use-module (gnu packages image)
#:use-module (gnu packages jemalloc)
+ #:use-module (gnu packages linux)
#:use-module (gnu packages llvm)
#:use-module (gnu packages multiprecision)
#:use-module (gnu packages nettle)
@@ -57376,3 +57378,50 @@ variant of this library is available separately as
@code{im}.")
(description
"Generate Rust register maps (`struct`s) from SVD files")
(license (list license:expat license:asl2.0))))
+
+(define-public rust-enquote-1
+ (package
+ (name "rust-enquote")
+ (version "1.0.3")
+ (home-page "https://github.com/reujab/enquote")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "enquote" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0vm687r2wwgc3d3l2iqhag9wgkql6k93sdvjxvmfkdpksajpij1f"))))
+ (build-system cargo-build-system)
+ (synopsis
+ "A Rust library quotes, unquotes, and unescapes strings")
+ (description
+ "A Rust library quotes, unquotes, and unescapes strings")
+ (license license:unlicense)))
+
+(define-public rust-pam-sys-0.5
+ (package
+ (name "rust-pam-sys")
+ (version "0.5.6")
+ (home-page "https://github.com/1wilkens/pam-sys")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "pam-sys" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0d14501d5vybjnzxfjf96321xa5wa36x1xvf02h02zq938qmhj6d"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-libc" ,rust-libc-0.2))))
+ (native-inputs
+ `(("linux-pam" ,linux-pam)))
+ (synopsis
+ "Rust FFI wrappers for the Linux Pluggable Authentication Modules (PAM)")
+ (description
+ "Rust FFI wrappers for the Linux Pluggable Authentication Modules (PAM)")
+ (license (list license:expat license:asl2.0))))
--
2.33.0
- [bug#49969] [PATCH v6 0/8] gnu: Add seatd-service-type and greetd-service-type., muradm, 2021/09/06
- [bug#49969] [PATCH v6 2/8] gnu: crates-io: Add rust-pam-sys 0.5.6., muradm, 2021/09/06
- [bug#49969] [PATCH v6 1/8] gnu: crates-io: Add rust-enquote-1 1.0.3., muradm, 2021/09/06
- [bug#49969] [PATCH v6 3/8] gnu: admin: Add greetd 0.8.0., muradm, 2021/09/06
- [bug#49969] [PATCH v6 4/8] gnu: admin: Add greetd-pam-mount., muradm, 2021/09/06
- [bug#49969] [PATCH v6 6/8] gnu: admin: Add libseat 0.5.0 and move seatd., muradm, 2021/09/06
- [bug#49969] [PATCH v6 5/8] gnu: base: Add greetd-service-type., muradm, 2021/09/06
- [bug#49969] [PATCH v6 8/8] gnu: tests: Add seatd/greetd based minimal desktop system tests., muradm, 2021/09/06
- [bug#49969] [PATCH v6 7/8] gnu: desktop: Add seatd-service-type., muradm, 2021/09/06
- [bug#49969] [PATCH v7 0/7] gnu: Add greetd-service-type and seatd-service-type., muradm, 2021/09/15
- [bug#49969] [PATCH v7 1/7] gnu: crates-io: Add rust-enquote 1.0.3 and rust-pam-sys 0.5.6.,
muradm <=
- [bug#49969] [PATCH v7 3/7] gnu: admin: Add greetd-pam-mount., muradm, 2021/09/15
- [bug#49969] [PATCH v7 4/7] gnu: base: Add greetd-service-type., muradm, 2021/09/15
- [bug#49969] [PATCH v7 5/7] gnu: admin: Add libseat 0.6.1 and move seatd., muradm, 2021/09/15
- [bug#49969] [PATCH v7 7/7] gnu: tests: Add seatd/greetd based minimal desktop system tests., muradm, 2021/09/15
- [bug#49969] [PATCH v7 6/7] gnu: desktop: Add seatd-service-type., muradm, 2021/09/15
- [bug#49969] [PATCH v7 2/7] gnu: admin: Add greetd 0.8.0., muradm, 2021/09/15
- [bug#49969] [PATCH v8 0/7] Update libseat and seatd to 0.6.2., muradm, 2021/09/16