gnu: Add rust-linux-raw-sys-0.4.
* gnu/packages/crates-io.scm (rust-linux-raw-sys-0.4): New variable. (rust-linux-raw-sys-0.3): Inherit from rust-linux-raw-sys-0.4.
parent
afad2e9d8f
commit
2a87ab305e
|
@ -36494,17 +36494,17 @@ facility. Provides a safe interface around the raw system calls allowing
|
||||||
user-space programs to perform key manipulation.")
|
user-space programs to perform key manipulation.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-linux-raw-sys-0.3
|
(define-public rust-linux-raw-sys-0.4
|
||||||
(package
|
(package
|
||||||
(name "rust-linux-raw-sys")
|
(name "rust-linux-raw-sys")
|
||||||
(version "0.3.7")
|
(version "0.4.8")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (crate-uri "linux-raw-sys" version))
|
(method url-fetch)
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(uri (crate-uri "linux-raw-sys" version))
|
||||||
(sha256
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(base32
|
(sha256
|
||||||
"17s7qr5h82blrxy29014zzhr30jcxcjc8r16v2p31rzcfal7xsgc"))))
|
(base32 "1nw8dqdhai0c7r701bicj3y6vrwc7dgbx9lbcw29ijnr7d562liq"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
|
@ -36522,6 +36522,26 @@ Linux userspace APIs.")
|
||||||
;; LLVM exception. See COPYRIGHT in the repository.
|
;; LLVM exception. See COPYRIGHT in the repository.
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-linux-raw-sys-0.3
|
||||||
|
(package
|
||||||
|
(inherit rust-linux-raw-sys-0.4)
|
||||||
|
(name "rust-linux-raw-sys")
|
||||||
|
(version "0.3.7")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "linux-raw-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"17s7qr5h82blrxy29014zzhr30jcxcjc8r16v2p31rzcfal7xsgc"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
|
||||||
|
("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-static-assertions" ,rust-static-assertions-1))))))
|
||||||
|
|
||||||
(define-public rust-linux-raw-sys-0.1
|
(define-public rust-linux-raw-sys-0.1
|
||||||
(package
|
(package
|
||||||
(inherit rust-linux-raw-sys-0.3)
|
(inherit rust-linux-raw-sys-0.3)
|
||||||
|
|
Reference in New Issue