diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:47:02 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:47:02 -0600 |
commit | 0aed2d139e96cf04a5a54da660b06695f24c531b (patch) | |
tree | ef917385e66ae689690ab56733d9c7c3bfa885e7 /unlustig.scm | |
parent | 30e5dc79e17763dfcf66f213a61a2d42d8edfe5e (diff) | |
download | guix-msglm-0aed2d139e96cf04a5a54da660b06695f24c531b.tar.gz guix-msglm-0aed2d139e96cf04a5a54da660b06695f24c531b.tar.bz2 guix-msglm-0aed2d139e96cf04a5a54da660b06695f24c531b.zip |
add rust-tempfile@2
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index de3d232..a3f167f 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -307,3 +307,27 @@ Unix, @code{macOS} and Windows.") (license license:expat))) +(define-public rust-tempfile-2 + (package + (name "rust-tempfile") + (version "2.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "tempfile" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1q61byf232rra0vqxp4qp10wwwqsqqd45qjj80ql5f34vgljzkhi")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-kernel32-sys" ,rust-kernel32-sys-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-rand" ,rust-rand-0.3) + ("rust-redox-syscall" ,rust-redox-syscall-0.1) + ("rust-winapi" ,rust-winapi-0.2)))) + (home-page "https://stebalien.com/projects/tempfile-rs/") + (synopsis "library for managing temporary files and directories.") + (description + "This package provides a library for managing temporary files and directories.") + (license (list license:expat license:asl2.0)))) + |