mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: Add rust-servo-fontconfig-0.5.
* gnu/packages/crates-io.scm (rust-servo-fontconfig-0.5): New variable. (rust-servo-fontconfig-0.4): Inherit from above.
This commit is contained in:
parent
eb3e53568c
commit
5d533d92d2
1 changed files with 24 additions and 6 deletions
|
@ -31888,8 +31888,31 @@ (define-public rust-serial-test-0.4
|
|||
(description "Serialising Rust tests")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-servo-fontconfig-0.5
|
||||
(package
|
||||
(name "rust-servo-fontconfig")
|
||||
(version "0.5.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "servo-fontconfig" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0z11bjndkp87dnqqmqww6raswgpy7sfh9ahdpx7d0wzxwlpy5qy7"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
("rust-servo-fontconfig-sys" ,rust-servo-fontconfig-sys-5))))
|
||||
(home-page "https://github.com/servo/rust-fontconfig/")
|
||||
(synopsis "Rust bindings for fontconfig")
|
||||
(description "This package provides Rust bindings for fontconfig.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-servo-fontconfig-0.4
|
||||
(package
|
||||
(inherit rust-servo-fontconfig-0.5)
|
||||
(name "rust-servo-fontconfig")
|
||||
(version "0.4.0")
|
||||
(source
|
||||
|
@ -31901,7 +31924,6 @@ (define-public rust-servo-fontconfig-0.4
|
|||
(sha256
|
||||
(base32
|
||||
"1nach6s4hdf86jz5hlm4p5r7vin91cs7gg89mr533id5fpbzi250"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
|
@ -31909,11 +31931,7 @@ (define-public rust-servo-fontconfig-0.4
|
|||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("fontconfig" ,fontconfig)))
|
||||
(home-page "https://github.com/servo/rust-fontconfig/")
|
||||
(synopsis "Rust bindings for fontconfig")
|
||||
(description "This package provides Rust bindings for fontconfig.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
`(("fontconfig" ,fontconfig)))))
|
||||
|
||||
(define-public rust-servo-fontconfig-sys-5
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue