me
/
guix
Archived
1
0
Fork 0

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
Valentin Ignatev 2020-01-18 20:56:01 +03:00 committed by Efraim Flashner
parent 49380a3a86
commit 15b6bb4198
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -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")