gnu: Add rust-findshlibs.

* gnu/packages/crates-io.scm (rust-findshlibs): New variable.
master
Efraim Flashner 2019-08-28 15:49:11 +03:00
parent b59a64606f
commit 9d7d8e8a39
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -354,6 +354,31 @@ provides implementations for @code{HashMap} and @code{HashSet}.")
(license (list license:asl2.0
license:expat))))
(define-public rust-findshlibs
(package
(name "rust-findshlibs")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "findshlibs" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1n2vagn0q5yim32hxkwi1cjgp3yn1dm45p7z8nw6lapywihhs9mi"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-lazy-static" ,rust-lazy-static)
("rust-libc" ,rust-libc))))
(home-page "https://github.com/gimli-rs/findshlibs")
(synopsis "Find the set of shared libraries loaded in the current process")
(description
"Find the set of shared libraries loaded in the current process with a
cross platform API.")
(license (list license:asl2.0
license:expat))))
(define-public rust-fnv
(package
(name "rust-fnv")