gnu: Add rust-goblin-0.6.
* gnu/packages/crates-io.scm (rust-goblin-0.6): New variable. (rust-goblin-0.2): Inherit from rust-goblin-0.6.
parent
2f167ff1c5
commit
daf8214978
|
@ -27254,32 +27254,49 @@ timers.")
|
||||||
libraries GMP, MPFR, and MPC.")
|
libraries GMP, MPFR, and MPC.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
(define-public rust-goblin-0.2
|
(define-public rust-goblin-0.6
|
||||||
(package
|
(package
|
||||||
(name "rust-goblin")
|
(name "rust-goblin")
|
||||||
(version "0.2.1")
|
(version "0.6.1")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "goblin" version))
|
(uri (crate-uri "goblin" version))
|
||||||
(file-name
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1j38fkqadbsjxawr3wnj9m0qaihcwp6pmfakmhsar881509y7mfx"))))
|
"0s7zs27b192virbp88y2fgq8p6nb8blkn7byqyl4cv7bm3j4ssqd"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:tests? #f ; Not all files included.
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-scroll" ,rust-scroll-0.10)
|
(("rust-log" ,rust-log-0.4)
|
||||||
("rust-plain" ,rust-plain-0.2)
|
("rust-plain" ,rust-plain-0.2)
|
||||||
("rust-log" ,rust-log-0.4))))
|
("rust-scroll" ,rust-scroll-0.11))))
|
||||||
(home-page "https://github.com/m4b/goblin")
|
(home-page "https://github.com/m4b/goblin")
|
||||||
(synopsis "ELF, Mach-o, and PE binary parsing and loading crate")
|
(synopsis "ELF, Mach-o, and PE binary parsing and loading crate")
|
||||||
(description "This package provides an ELF, Mach-o, and PE binary parsing
|
(description "This package provides an ELF, Mach-o, and PE binary parsing
|
||||||
and loading crate.")
|
and loading crate.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-goblin-0.2
|
||||||
|
(package
|
||||||
|
(inherit rust-goblin-0.6)
|
||||||
|
(name "rust-goblin")
|
||||||
|
(version "0.2.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "goblin" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1j38fkqadbsjxawr3wnj9m0qaihcwp6pmfakmhsar881509y7mfx"))))
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-scroll" ,rust-scroll-0.10)
|
||||||
|
("rust-plain" ,rust-plain-0.2)
|
||||||
|
("rust-log" ,rust-log-0.4))))))
|
||||||
|
|
||||||
(define-public rust-greetd-ipc-0.8
|
(define-public rust-greetd-ipc-0.8
|
||||||
(package
|
(package
|
||||||
(name "rust-greetd-ipc")
|
(name "rust-greetd-ipc")
|
||||||
|
|
Reference in New Issue