maav / guix-mirror (public) (License: GPLv3+) (since 2019-11-02) (hash sha1)
Mirror of GNU Guix (https://git.savannah.gnu.org/git/guix.git) with personal branches integrated into master branch.
List of commits:
Subject Hash Author Date (UTC)
gnu: Add rust-aesni-0.7. be54916f7ad6c642567870867811e41d93e1384b Arun Isaac 2020-09-17 08:20:37
gnu: Add rust-stream-cipher-0.4. f736ef388d5faee385d111b3c57780fc0a700c93 Arun Isaac 2020-09-17 08:19:58
gnu: Add rust-aes-soft-0.4. 8a8b3c3398a86dce0b883f422c1e233b957e00b5 Arun Isaac 2020-09-17 08:14:16
gnu: Add rust-insta-0.16. 9fa58ec9e40f68aed8c5d6ad027ff140f0e1cb7f Arun Isaac 2020-09-17 07:05:24
gnu: Add rust-crypto-tests-0.5. b5357b7ef78cf920d19eab6332032fa49beeb1bd Arun Isaac 2020-09-17 07:00:22
gnu: Add rust-crypto-mac-0.4. 6a849f27509a1985dc364d6afb1084808eba5ed3 Arun Isaac 2020-09-17 06:56:36
gnu: Add rust-universal-hash-0.4. 284c427ca689cc0d605a86c3bdcb20944462a410 Arun Isaac 2020-09-17 06:49:15
gnu: Add rust-block-cipher-0.7. a173f3a7e01857e65780da9b18ed5a54c3b9911a Arun Isaac 2020-09-17 06:43:42
gnu: Add rust-block-cipher-trait-0.4. d2a6b654c893328b80b429c7e94947b2a89d31e6 Arun Isaac 2020-09-17 06:34:45
gnu: Add rust-ron-0.5. e49928258bd3dfa24b7382361e056a039b01f647 Arun Isaac 2020-09-17 06:20:25
gnu: Add rust-globwalk-0.8. da6390144a3eb2bc1143f946df1bcf32e9dfe761 Arun Isaac 2020-09-17 06:13:12
gnu: Add rust-digest-0.6. 75ed6b90e6c4dfd24311a5456aacad6b6d6f51c0 Arun Isaac 2020-09-17 06:03:46
gnu: Add rust-bigdecimal-0.2. 5073a3ac9dc572fed055cb824960863c836ddc2f Arun Isaac 2020-09-17 06:01:56
gnu: Add rust-as-slice-0.1. 4c1384c576a77a73ac1a4b88c96b97b0873cf909 Arun Isaac 2020-09-17 05:58:28
gnu: Add rust-serde-urlencoded-0.6. fd2acf7132215633a43ea1d7c3fa685156070184 Arun Isaac 2020-09-17 04:57:00
gnu: Add rust-generic-array-0.8. 3f9ab9998d3194992d5b609db3d92a04af7c7f7f Arun Isaac 2020-09-17 04:46:08
gnu: Add rust-security-framework-sys-0.2. 3de89b4987d23807af226fb9e8556d2611b4c4a3 Arun Isaac 2020-09-17 04:42:34
gnu: Add rust-ufmt-write-0.1. 289012517ca9213675aa3ac2b8d3b9e49695cc8b Arun Isaac 2020-09-17 04:39:26
gnu: Add rust-pq-sys-0.4. df199ce6721d87533cadd7eb92a5990686ac98da Arun Isaac 2020-09-17 04:34:30
gnu: Add rust-syn-test-suite-0. eef1afbc65b7befb55e66fe6f59bf20413268dc8 Arun Isaac 2020-09-17 04:30:14
Commit be54916f7ad6c642567870867811e41d93e1384b - gnu: Add rust-aesni-0.7.
* gnu/packages/crates-io.scm (rust-aesni-0.7): New variable.
Author: Arun Isaac
Author date (UTC): 2020-09-17 08:20
Committer name: Arun Isaac
Committer date (UTC): 2020-10-12 06:11
Parent(s): f736ef388d5faee385d111b3c57780fc0a700c93
Signer:
Signing key: 2E25EE8B61802BB3
Signing status: E
Tree: a098045aa9305042a8d6cbd843711848515ba39c
File Lines added Lines deleted
gnu/packages/crates-io.scm 27 0
File gnu/packages/crates-io.scm changed (mode: 100644) (index 523dacd508..94700b1d25)
... ... the Rust programming language.")
220 220 AES (Rijndael) block ciphers.") AES (Rijndael) block ciphers.")
221 221 (license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
222 222
223 (define-public rust-aesni-0.7
224 (package
225 (name "rust-aesni")
226 (version "0.7.0")
227 (source
228 (origin
229 (method url-fetch)
230 (uri (crate-uri "aesni" version))
231 (file-name (string-append name "-" version ".tar.gz"))
232 (sha256
233 (base32
234 "0r6j0mjkyqnwvgib01cvrwfw8rlx1biw75234niv723n1fdx6l6h"))))
235 (build-system cargo-build-system)
236 (arguments
237 `(#:cargo-inputs
238 (("rust-block-cipher" ,rust-block-cipher-0.7)
239 ("rust-opaque-debug" ,rust-opaque-debug-0.2)
240 ("rust-stream-cipher" ,rust-stream-cipher-0.4))
241 #:cargo-development-inputs
242 (("rust-block-cipher" ,rust-block-cipher-0.7)
243 ("rust-stream-cipher" ,rust-stream-cipher-0.4))))
244 (home-page "https://github.com/RustCrypto/block-ciphers")
245 (synopsis "AES (Rijndael) block ciphers implementation using AES-NI")
246 (description "This package provides an implementation of AES (Rijndael)
247 block ciphers using AES-NI.")
248 (license (list license:expat license:asl2.0))))
249
223 250 (build-system cargo-build-system) (build-system cargo-build-system)
224 251 (arguments (arguments
225 252 `(#:skip-build? #t `(#:skip-build? #t
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/maav/guix-mirror

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/maav/guix-mirror

Clone this repository using git:
git clone git://git.rocketgit.com/user/maav/guix-mirror

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main