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-sourcemap-6. bb9003c9751ffe9c0cac6704ffe40a1aefe91409 Arun Isaac 2020-09-21 06:03:00
gnu: Add rust-path-clean-0.1. c2b43329a1fdc92ac8edb8b6b17dfa865e925bd2 Arun Isaac 2020-09-21 05:59:49
gnu: Add rust-is-macro-0.1. 722c00d1109cd06418a90d36f6a729c3ef9ace90 Arun Isaac 2020-09-21 05:58:32
gnu: Add rust-ipconfig-0.2. 461b8f7457d6dcda3c045a4bd875c1cadd12ad0b Arun Isaac 2020-09-21 05:56:12
gnu: Add rust-napi-0.5. bc69ad7b364620f2820203b9adef356a7f0515f7 Arun Isaac 2020-09-21 05:53:44
gnu: Add rust-napi-build-0.2. 0a0a560c90faef0a3a482d1b528d9430b6912c4b Arun Isaac 2020-09-21 05:52:18
gnu: Add rust-napi-sys-0.4. 8e07de3dbc5fa577f1eb8bf18a959491266e3987 Arun Isaac 2020-09-21 05:50:17
gnu: rust-syn-1: Update to 1.0.40. 08d59bc87094d9bb4377a177e7e478e7b1e25231 Arun Isaac 2020-09-21 06:20:25
gnu: Add rust-reqwest-0.10. f2ee88881623e867c268964eea5dd32c995d7351 Arun Isaac 2020-09-21 05:48:03
gnu: Add rust-hyper-rustls-0.21. 7f5e2d8313c8e3b53263c79529b0f1381c190c29 Arun Isaac 2020-09-21 05:45:09
gnu: Add rust-rustls-native-certs-0.4. e2ed3a3a0ee75db72a2786b611226bbc70bd5fcc Arun Isaac 2020-09-21 05:43:32
gnu: Add rust-hyper-tls-0.4. 1563dee3d837ab53afea6383188d1983161cf4d3 Arun Isaac 2020-09-21 05:39:48
gnu: Add rust-mime-guess-2. 1abd699e7fae4d4f7476d658955d2a46e09604ec Arun Isaac 2020-09-21 05:07:27
gnu: Add rust-trust-dns-resolver-0.19. 65cdebd20a2d8af8f667f91321952a9eeb6f9692 Arun Isaac 2020-09-20 19:09:03
gnu: Add rust-trust-dns-https-0.19. 77a0536bfd2a6b8009ed21c5eaafbd7226115404 Arun Isaac 2020-09-20 19:04:24
gnu: Add rust-napi-derive-0.5. 69cc75561e9308adb26be36f244f3ee334a427d0 Arun Isaac 2020-09-20 18:55:52
gnu: Add rust-static-map-macro-0.2. 23e96e41cb7b693d72df4c7f98ebe7fdf5593aff Arun Isaac 2020-09-20 18:54:24
gnu: Add rust-relative-path-1. 001638a5104c381563af6bf4d69a8039ce91c387 Arun Isaac 2020-09-20 18:52:29
gnu: Add rust-pmutil-0.5. d84c250f9242b76ca8e88b35282488388a7c78d2 Arun Isaac 2020-09-20 18:50:09
gnu: Add rust-libflate-1. 20921cc75b0f1ade594e5a50ec7db3486a713d81 Arun Isaac 2020-09-20 18:47:24
Commit bb9003c9751ffe9c0cac6704ffe40a1aefe91409 - gnu: Add rust-sourcemap-6.
* gnu/packages/crates-io.scm (rust-sourcemap-6): New variable.
Author: Arun Isaac
Author date (UTC): 2020-09-21 06:03
Committer name: Arun Isaac
Committer date (UTC): 2020-10-12 06:12
Parent(s): c2b43329a1fdc92ac8edb8b6b17dfa865e925bd2
Signer:
Signing key: 2E25EE8B61802BB3
Signing status: E
Tree: 346fb354cef6ae7e53dadb8f22e621f4ae012a07
File Lines added Lines deleted
gnu/packages/crates-io.scm 44 0
File gnu/packages/crates-io.scm changed (mode: 100644) (index 1c22e12575..7473dfb9d6)
... ... track of where each new file and line starts.")
25566 25566 (license (list license:asl2.0 (license (list license:asl2.0
25567 25567 license:expat)))) license:expat))))
25568 25568
25569 (define-public rust-sourcemap-6
25570 (package
25571 (name "rust-sourcemap")
25572 (version "6.0.1")
25573 (source
25574 (origin
25575 (method url-fetch)
25576 (uri (crate-uri "sourcemap" version))
25577 (file-name (string-append name "-" version ".tar.gz"))
25578 (sha256
25579 (base32
25580 "1sv1rxc6d2rfvd5xrqzqq0i2y0z1q7sqj3wm9krxbggcccj1y0vf"))
25581 (modules '((guix build utils)))
25582 (snippet
25583 '(begin
25584 ;; Enable unstable features
25585 (substitute* "src/lib.rs"
25586 (("//! This library" all)
25587 (string-append "#![feature(inner_deref)]" "\n" all)))
25588 #t))))
25589 (build-system cargo-build-system)
25590 (arguments
25591 `(#:cargo-inputs
25592 (("rust-base64" ,rust-base64-0.11)
25593 ("rust-if-chain" ,rust-if-chain-1)
25594 ("rust-lazy-static" ,rust-lazy-static-1)
25595 ("rust-regex" ,rust-regex-1)
25596 ("rust-scroll" ,rust-scroll-0.10)
25597 ("rust-serde" ,rust-serde-1)
25598 ("rust-serde-json" ,rust-serde-json-1)
25599 ("rust-url" ,rust-url-2))
25600 #:cargo-development-inputs
25601 (("rust-rustc-version" ,rust-rustc-version-0.2))
25602 #:phases
25603 (modify-phases %standard-phases
25604 (add-after 'unpack 'enable-unstable-features
25605 (lambda _
25606 (setenv "RUSTC_BOOTSTRAP" "1")
25607 #t)))))
25608 (home-page "https://github.com/getsentry/rust-sourcemap")
25609 (synopsis "Basic sourcemap handling for Rust")
25610 (description "This package provides basic sourcemap handling for Rust.")
25611 (license license:bsd-3)))
25612
25569 25613 (define-public rust-speculate-0.1 (define-public rust-speculate-0.1
25570 25614 (package (package
25571 25615 (name "rust-speculate") (name "rust-speculate")
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