File gnu/packages/crates-io.scm changed (mode: 100644) (index fe14a0d382..d553471899) |
... |
... |
deserialization, and interpreter in Rust.") |
17192 |
17192 |
(origin |
(origin |
17193 |
17193 |
(method url-fetch) |
(method url-fetch) |
17194 |
17194 |
(uri (crate-uri "parking_lot" version)) |
(uri (crate-uri "parking_lot" version)) |
17195 |
|
(file-name |
|
17196 |
|
(string-append name "-" version ".tar.gz")) |
|
|
17195 |
|
(file-name (string-append name "-" version ".tar.gz")) |
17197 |
17196 |
(sha256 |
(sha256 |
17198 |
17197 |
(base32 |
(base32 |
17199 |
17198 |
"0pjhcbyk6n0g6jsr6s9nf4x8wribm1b2yf8fgc8drbqa77mh99yk")))) |
"0pjhcbyk6n0g6jsr6s9nf4x8wribm1b2yf8fgc8drbqa77mh99yk")))) |
|
... |
... |
synchronization primitives.") |
17288 |
17287 |
("rust-rand" ,rust-rand-0.4) |
("rust-rand" ,rust-rand-0.4) |
17289 |
17288 |
("rust-rustc-version" ,rust-rustc-version-0.2)))))) |
("rust-rustc-version" ,rust-rustc-version-0.2)))))) |
17290 |
17289 |
|
|
|
17290 |
|
(define-public rust-parking-lot-core-0.8 |
|
17291 |
|
(package |
|
17292 |
|
(name "rust-parking-lot-core") |
|
17293 |
|
(version "0.8.0") |
|
17294 |
|
(source |
|
17295 |
|
(origin |
|
17296 |
|
(method url-fetch) |
|
17297 |
|
(uri (crate-uri "parking_lot_core" version)) |
|
17298 |
|
(file-name (string-append name "-" version ".tar.gz")) |
|
17299 |
|
(sha256 |
|
17300 |
|
(base32 |
|
17301 |
|
"16yazfg3sq9mz6cfdkhgbv8yvc1kkasyhys4y7r3g16hgmralqf3")))) |
|
17302 |
|
(build-system cargo-build-system) |
|
17303 |
|
(arguments |
|
17304 |
|
`(#:cargo-inputs |
|
17305 |
|
(("rust-backtrace" ,rust-backtrace-0.3) |
|
17306 |
|
("rust-cfg-if" ,rust-cfg-if-0.1) |
|
17307 |
|
("rust-cloudabi" ,rust-cloudabi-0.1) |
|
17308 |
|
("rust-instant" ,rust-instant-0.1) |
|
17309 |
|
("rust-libc" ,rust-libc-0.2) |
|
17310 |
|
("rust-petgraph" ,rust-petgraph-0.5) |
|
17311 |
|
("rust-redox-syscall" ,rust-redox-syscall-0.1) |
|
17312 |
|
("rust-smallvec" ,rust-smallvec-1) |
|
17313 |
|
("rust-thread-id" ,rust-thread-id-3) |
|
17314 |
|
("rust-winapi" ,rust-winapi-0.3)))) |
|
17315 |
|
(home-page "https://github.com/Amanieu/parking_lot") |
|
17316 |
|
(synopsis "API for creating custom synchronization primitives") |
|
17317 |
|
(description "This package provides an advanced API for creating custom |
|
17318 |
|
synchronization primitives.") |
|
17319 |
|
(license (list license:asl2.0 license:expat)))) |
|
17320 |
|
|
17291 |
17321 |
(define-public rust-parking-lot-core-0.7 |
(define-public rust-parking-lot-core-0.7 |
17292 |
17322 |
(package |
(package |
|
17323 |
|
(inherit rust-parking-lot-core-0.8) |
17293 |
17324 |
(name "rust-parking-lot-core") |
(name "rust-parking-lot-core") |
17294 |
17325 |
(version "0.7.2") |
(version "0.7.2") |
17295 |
17326 |
(source |
(source |
|
... |
... |
synchronization primitives.") |
17301 |
17332 |
(sha256 |
(sha256 |
17302 |
17333 |
(base32 |
(base32 |
17303 |
17334 |
"18s0cw5y32447c06fhg2mp3xfng22fn1h9fpx3il98sbimv7r36m")))) |
"18s0cw5y32447c06fhg2mp3xfng22fn1h9fpx3il98sbimv7r36m")))) |
17304 |
|
(build-system cargo-build-system) |
|
17305 |
17335 |
(arguments |
(arguments |
17306 |
17336 |
`(#:cargo-inputs |
`(#:cargo-inputs |
17307 |
17337 |
(("rust-backtrace" ,rust-backtrace-0.3) |
(("rust-backtrace" ,rust-backtrace-0.3) |
|
... |
... |
synchronization primitives.") |
17312 |
17342 |
("rust-redox-syscall" ,rust-redox-syscall-0.1) |
("rust-redox-syscall" ,rust-redox-syscall-0.1) |
17313 |
17343 |
("rust-smallvec" ,rust-smallvec-1) |
("rust-smallvec" ,rust-smallvec-1) |
17314 |
17344 |
("rust-thread-id" ,rust-thread-id-3) |
("rust-thread-id" ,rust-thread-id-3) |
17315 |
|
("rust-winapi" ,rust-winapi-0.3)))) |
|
17316 |
|
(home-page "https://github.com/Amanieu/parking_lot") |
|
17317 |
|
(synopsis "API for creating custom synchronization primitives") |
|
17318 |
|
(description |
|
17319 |
|
"An advanced API for creating custom synchronization primitives in Rust.") |
|
17320 |
|
(license (list license:asl2.0 license:expat)))) |
|
|
17345 |
|
("rust-winapi" ,rust-winapi-0.3)))))) |
17321 |
17346 |
|
|
17322 |
17347 |
(define-public rust-parking-lot-core-0.6 |
(define-public rust-parking-lot-core-0.6 |
17323 |
17348 |
(package |
(package |