gnu: Add rust-libgit2-sys-0.15.
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.15): New variable. (rust-libgit2-sys-0.14): Inherit from rust-libgit2-sys-0.15. Change-Id: Ic9e5705270fb6029ca34e877d2dadb0d184128cd
parent
fddc8c1d4e
commit
0c4d43c918
|
@ -37187,8 +37187,43 @@ algorithm and related formats (ZLIB, GZIP).")
|
||||||
(license
|
(license
|
||||||
(list license:expat license:asl2.0 license:ncsa))))
|
(list license:expat license:asl2.0 license:ncsa))))
|
||||||
|
|
||||||
|
(define-public rust-libgit2-sys-0.15
|
||||||
|
(package
|
||||||
|
(name "rust-libgit2-sys")
|
||||||
|
(version "0.15.2+1.6.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "libgit2-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1yllyq9wiryy257cfx8s7wadls24yzkxnhmbl95iz9ml3zhz43d8"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin (delete-file-recursively "libgit2")))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-cc" ,rust-cc-1)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-libssh2-sys" ,rust-libssh2-sys-0.3)
|
||||||
|
("rust-libz-sys" ,rust-libz-sys-1)
|
||||||
|
("rust-openssl-sys" ,rust-openssl-sys-0.9)
|
||||||
|
("rust-pkg-config" ,rust-pkg-config-0.3))))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list libgit2-1.6 openssl zlib))
|
||||||
|
(home-page "https://github.com/rust-lang/git2-rs")
|
||||||
|
(synopsis "Native bindings to the libgit2 library")
|
||||||
|
(description
|
||||||
|
"This package provides native Rust bindings to the @code{libgit2}
|
||||||
|
library.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-libgit2-sys-0.14
|
(define-public rust-libgit2-sys-0.14
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-libgit2-sys-0.15)
|
||||||
(name "rust-libgit2-sys")
|
(name "rust-libgit2-sys")
|
||||||
(version "0.14.2+1.5.1")
|
(version "0.14.2+1.5.1")
|
||||||
(source
|
(source
|
||||||
|
@ -37203,7 +37238,6 @@ algorithm and related formats (ZLIB, GZIP).")
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin (delete-file-recursively "libgit2")))))
|
'(begin (delete-file-recursively "libgit2")))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-cc" ,rust-cc-1)
|
(("rust-cc" ,rust-cc-1)
|
||||||
|
@ -37211,17 +37245,7 @@ algorithm and related formats (ZLIB, GZIP).")
|
||||||
("rust-libssh2-sys" ,rust-libssh2-sys-0.2)
|
("rust-libssh2-sys" ,rust-libssh2-sys-0.2)
|
||||||
("rust-libz-sys" ,rust-libz-sys-1)
|
("rust-libz-sys" ,rust-libz-sys-1)
|
||||||
("rust-openssl-sys" ,rust-openssl-sys-0.9)
|
("rust-openssl-sys" ,rust-openssl-sys-0.9)
|
||||||
("rust-pkg-config" ,rust-pkg-config-0.3))))
|
("rust-pkg-config" ,rust-pkg-config-0.3))))))
|
||||||
(native-inputs
|
|
||||||
(list pkg-config))
|
|
||||||
(inputs
|
|
||||||
(list libgit2 openssl zlib))
|
|
||||||
(home-page "https://github.com/rust-lang/git2-rs")
|
|
||||||
(synopsis "Native bindings to the libgit2 library")
|
|
||||||
(description
|
|
||||||
"This package provides native Rust bindings to the @code{libgit2}
|
|
||||||
library.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-libgit2-sys-0.13
|
(define-public rust-libgit2-sys-0.13
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue