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-blobby-0.3. 2a93f5a43c211993ce6ba3fef129649468c3fc39 Arun Isaac 2020-09-16 05:05:54
gnu: Add rust-backtrace-0.3.35. 1231ce9a0735f3ebb6456de97dc96a5cabcc9ca4 Arun Isaac 2020-09-16 04:46:30
gnu: rust-tracing-core-0.1: Update to 0.1.16. cefb65453d7e916aacd1bcbfa2f3de350a8ea44a Arun Isaac 2020-09-15 17:35:22
gnu: rust-serde-1: Update to 1.0.116. 0d32e5e4f9d39a12f66d872b0d022af7864be346 Arun Isaac 2020-09-15 17:34:19
gnu: rust-proc-macro2-1: Update to 1.0.21. 61121235c969a86583f77f889565d11442eb3ffc Arun Isaac 2020-09-15 17:33:23
gnu: rust-once-cell-1: Update to 1.4.1. 168193ade5264715cc702b41363dfc3bfe96024d Arun Isaac 2020-09-15 17:32:01
gnu: rust-rustc-std-workspace-alloc-1.0: Remove minor version in variable name. 07419346647458bfcdfdf24d91ef643d99d7b47b Arun Isaac 2020-09-15 17:31:12
gnu: rust-tinytemplate-1: Update to 1.1.0. 4403d20149029d564057f49a4067055db7d9ce38 Arun Isaac 2020-09-15 17:27:00
gnu: rust-serde-derive-1: Update to 1.0.116. 81c5f0c42fb3bfe6336003170ccf371440016ffa Arun Isaac 2020-09-15 17:22:38
gnu: rust-criterion-plot-0.4: Update to 0.4.3. 0cc16068f0f3dbe11436d395eaaa2cdc5eeabdd8 Arun Isaac 2020-09-15 17:17:01
gnu: rust-criterion-0.3: Update to 0.3.3. d40b00635c2922cb232fb6ba8b5a672d6d6be523 Arun Isaac 2020-09-15 15:51:41
gnu: rust-httparse-1.3: Remove minor version from variable name. ec6481f0e2fbb7fac0b3a2a0ba968364aac831e0 Arun Isaac 2020-09-15 17:19:24
gnu: rust-pest-2.1: Remove minor version from variable name. 90184436e9a9c0394ddc503450ac3b4b3dee4400 Arun Isaac 2020-09-15 05:21:28
gnu: rust-pest-derive-2.1: Remove minor version from variable name. 3520b5fdf09c6fff20b514ca13d89e2a2f7da2a5 Arun Isaac 2020-09-15 05:20:22
gnu: rust-seahash-3.0: Remove minor version from variable name. 6594f744a9e4581bf9e91059255b3049489fb191 Arun Isaac 2020-09-15 05:18:36
gnu: rust-flate2-1.0: Remove minor version from variable name. 93922eecc9f8dec90dca8fdf1df163db42c196e5 Arun Isaac 2020-09-15 05:17:16
gnu: rust-scopeguard-1.0: Remove minor version from variable name. 460ab99665604bded06b5af2d2a7ca9ea7f64adb Arun Isaac 2020-09-15 04:34:00
gnu: rust-thread-id-3.3: Remove minor version from variable name. 17830c4aa01363046e5d6ee222f3ddefaa423187 Arun Isaac 2020-09-15 04:32:39
gnu: rust-stable-deref-trait-1.1: Remove minor version from variable name. c1a0012bf7d24a7bfc40daf85a1c05660616da27 Arun Isaac 2020-09-14 18:13:26
gnu: rust-percent-encoding-2.1: Remove minor version from variable name. 2cc9d2a7cf27a45cf4927fa8a5cdc6d36b05ea09 Arun Isaac 2020-09-14 18:07:34
Commit 2a93f5a43c211993ce6ba3fef129649468c3fc39 - gnu: Add rust-blobby-0.3.
* gnu/packages/crates-io.scm (rust-blobby-0.3): New variable.
(rust-blobby-0.1): Inherit from rust-blobby-0.3.
Author: Arun Isaac
Author date (UTC): 2020-09-16 05:05
Committer name: Arun Isaac
Committer date (UTC): 2020-10-12 06:11
Parent(s): 1231ce9a0735f3ebb6456de97dc96a5cabcc9ca4
Signer:
Signing key: 2E25EE8B61802BB3
Signing status: E
Tree: 3e257b9e67f5b70fd1ebe7cd57de4927bccee917
File Lines added Lines deleted
gnu/packages/crates-io.scm 25 6
File gnu/packages/crates-io.scm changed (mode: 100644) (index 9d22e69c52..5430755ad0)
... ... BLAKE2bp hash functions.")
1896 1896 (license (list license:asl2.0 (license (list license:asl2.0
1897 1897 license:expat)))) license:expat))))
1898 1898
1899 (define-public rust-blobby-0.3
1900 (package
1901 (name "rust-blobby")
1902 (version "0.3.0")
1903 (source
1904 (origin
1905 (method url-fetch)
1906 (uri (crate-uri "blobby" version))
1907 (file-name
1908 (string-append name "-" version ".tar.gz"))
1909 (sha256
1910 (base32
1911 "1s2f3a7lx5rd26554d9940basff7qpyf1y8gkc309cgc8csmalpw"))))
1912 (build-system cargo-build-system)
1913 (arguments
1914 `(#:cargo-development-inputs
1915 (("rust-hex" ,rust-hex-0.3))))
1916 (home-page "https://github.com/RustCrypto/utils")
1917 (synopsis "Iterator over simple binary blob storage")
1918 (description "This package provides an iterator over simple binary blob
1919 storage.")
1920 (license (list license:expat license:asl2.0))))
1921
1899 1922 (define-public rust-blobby-0.1 (define-public rust-blobby-0.1
1900 1923 (package (package
1924 (inherit rust-blobby-0.3)
1901 1925 (name "rust-blobby") (name "rust-blobby")
1902 1926 (version "0.1.2") (version "0.1.2")
1903 1927 (source (source
 
... ... BLAKE2bp hash functions.")
1916 1940 (("rust-byteorder" ,rust-byteorder-1)) (("rust-byteorder" ,rust-byteorder-1))
1917 1941 #:cargo-development-inputs #:cargo-development-inputs
1918 1942 (("rust-byteorder" ,rust-byteorder-1) (("rust-byteorder" ,rust-byteorder-1)
1919 ("rust-hex" ,rust-hex-0.3))))
1920 (home-page "https://github.com/RustCrypto/utils")
1921 (synopsis "Iterator over simple binary blob storage")
1922 (description
1923 "Iterator over simple binary blob storage.")
1924 (license (list license:asl2.0 license:expat))))
1943 ("rust-hex" ,rust-hex-0.3))))))
1925 1944
1926 1945 (define-public rust-block-0.1 (define-public rust-block-0.1
1927 1946 (package (package
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