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-ipnetwork-0.17. 4e5d041c55d1dbefbde2ae442dc4d7ecaa30eeab Arun Isaac 2020-09-17 09:42:23
gnu: Add rust-winreg-0.7. c08fe8a9065aa14841380e96e7e3faacbc0cd156 Arun Isaac 2020-09-17 09:39:43
gnu: Add rust-cookie-store-0.12. 38281cf81c27a2ba5fdaf3256cb8a3f74480a114 Arun Isaac 2020-09-17 09:28:57
gnu: Add rust-publicsuffix-1. 9dab172230ec5f322b88c13aaa84c94f141e110a Arun Isaac 2020-09-17 09:26:19
gnu: Add rust-dotenv. fa6f772f30d987a59e37b92e3d218558293fdb74 Arun Isaac 2020-09-17 09:19:29
gnu: Add rust-derive-error-chain-0.10. 7eceb60e0c797ae4286ef4d47cf8b54d94b78a15 Arun Isaac 2020-09-17 09:16:50
gnu: Add rust-cookie-0.14. 33a5d00d56de351e6e54c10a4fc8e7fd750e3f13 Arun Isaac 2020-09-17 09:13:14
gnu: Add rust-time-0.2. f9ebdaa2b9fdc26f42f19019a871d04e067bd3cc Arun Isaac 2020-09-17 09:10:39
gnu: Add rust-time-macros-0.1. df747a09b366ddba6a6e122ad2073edf5559dd8b Arun Isaac 2020-09-17 09:07:14
gnu: Add rust-time-macros-impl-0.1. c8ec1b8789d4bb90fb7dbbe98101d71e44df9588 Arun Isaac 2020-09-17 09:05:48
gnu: Add rust-standback-0.2. 206ff7371d221935ca8d69ff1546b8957973fdd0 Arun Isaac 2020-09-17 09:03:58
gnu: Add rust-hkdf-0.9. e05c2c671ebfd57f984ef934f0e95b84c44dee14 Arun Isaac 2020-09-17 08:59:58
gnu: Add rust-aes-gcm-0.6. 1258cd036e5c633101ad8b6bda31e5fae5cea0d6 Arun Isaac 2020-09-17 08:57:14
gnu: Add rust-ghash-0.3. 2f5987aebaaa95f879e80175335eb2dbf7161439 Arun Isaac 2020-09-17 08:54:50
gnu: Add rust-polyval-0.4. 7e7c4c685bb60a3f386a3ce2cb9f2c1aa7040c8e Arun Isaac 2020-09-17 08:53:09
gnu: Add rust-aead-0.3. 63f0558a1a354257fc7354bf457ae4da39c086f4 Arun Isaac 2020-09-17 08:49:08
gnu: Add rust-heapless-0.5. 877ae9fd202b6eccd08a9ccd7175d446aba6dcf8 Arun Isaac 2020-09-17 08:47:08
gnu: Add rust-ufmt-0.1. 1949e24051b3afa49e87a698e001e0fa705efda7 Arun Isaac 2020-09-17 08:44:50
gnu: Add rust-ufmt-macros-0.1. e45472e6f27f3eff6ddcf08f5edf79b1762c776a Arun Isaac 2020-09-17 08:39:21
gnu: Add rust-hash32-0.1. c054ae40f45c23df16cd344d3b28832fedfe2f1c Arun Isaac 2020-09-17 08:35:57
Commit 4e5d041c55d1dbefbde2ae442dc4d7ecaa30eeab - gnu: Add rust-ipnetwork-0.17.
* gnu/packages/crates-io.scm (rust-ipnetwork-0.17): New variable.
Author: Arun Isaac
Author date (UTC): 2020-09-17 09:42
Committer name: Arun Isaac
Committer date (UTC): 2020-10-12 06:11
Parent(s): c08fe8a9065aa14841380e96e7e3faacbc0cd156
Signer:
Signing key: 2E25EE8B61802BB3
Signing status: E
Tree: 0c76190c2fbbeecf6ce1feddf45b74583eea3c05
File Lines added Lines deleted
gnu/packages/crates-io.scm 26 0
File gnu/packages/crates-io.scm changed (mode: 100644) (index a7abfdf3a0..c8e80d6f8d)
... ... The module only uses stable feature so it is guaranteed to compile using the
11633 11633 stable toolchain.") stable toolchain.")
11634 11634 (license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
11635 11635
11636 (define-public rust-ipnetwork-0.17
11637 (package
11638 (name "rust-ipnetwork")
11639 (version "0.17.0")
11640 (source
11641 (origin
11642 (method url-fetch)
11643 (uri (crate-uri "ipnetwork" version))
11644 (file-name (string-append name "-" version ".tar.gz"))
11645 (sha256
11646 (base32
11647 "0sviri9ksb3cmhx3h0rcfy8pvpx7f0cx5ba1z87ydvf07amymhq2"))))
11648 (build-system cargo-build-system)
11649 (arguments
11650 `(#:cargo-inputs
11651 (("rust-serde" ,rust-serde-1))
11652 #:cargo-development-inputs
11653 (("rust-criterion" ,rust-criterion-0.3)
11654 ("rust-serde-derive" ,rust-serde-derive-1)
11655 ("rust-serde-json" ,rust-serde-json-1))))
11656 (home-page "https://crates.io/crates/ipnetwork")
11657 (synopsis "Work with IP CIDRs in Rust")
11658 (description "This package provides a library to work with IP CIDRs in
11659 Rust.")
11660 (license (list license:expat license:asl2.0))))
11661
11636 11662 (define-public rust-is-executable (define-public rust-is-executable
11637 11663 (package (package
11638 11664 (name "rust-is-executable") (name "rust-is-executable")
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