gnu: Add rust-shared-library-0.1.
* gnu/packages/crates-io.scm (rust-shared-library-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>master
parent
49380a3a86
commit
15b6bb4198
|
@ -12172,6 +12172,30 @@ for the serde framework.")
|
|||
"A library for using child processes from multiple threads.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-shared-library-0.1
|
||||
(package
|
||||
(name "rust-shared-library")
|
||||
(version "0.1.9")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "shared_library" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"04fs37kdak051hm524a360978g58ayrcarjsbf54vqps5c7px7js"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-libc" ,rust-libc-0.2))))
|
||||
(home-page "https://github.com/tomaka/shared_library/")
|
||||
(synopsis "Bind to and load shared libraries")
|
||||
(description
|
||||
"This package allows easy binding to, and loading of, shared libraries.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-shlex-0.1
|
||||
(package
|
||||
(name "rust-shlex")
|
||||
|
|
Reference in New Issue