diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-20 12:27:57 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-20 17:22:33 +0100 |
commit | cc2f5cd99897e59978b336b4a2f5f68fac6405ed (patch) | |
tree | 9ce6c301c821bb05cd73e6088a5428b42e453ae2 /gnu | |
parent | 50e63a675b8316027b4c8ae2409eb144895d6d43 (diff) |
gnu: Add rust-temp-testdir-0.2.
* gnu/packages/crates-io.scm (rust-temp-testdir-0.2): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 28ebef3c26..a6e4452833 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -58651,6 +58651,28 @@ loading and layout routines of XeTeX as a crate, currently providing only a C API.") (license license:expat))) +(define-public rust-temp-testdir-0.2 + (package + (name "rust-temp-testdir") + (version "0.2.3") + (source (origin + (method url-fetch) + (uri (crate-uri "temp_testdir" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1z5yv6d9944md5zg6g0sbahv7xjga2k232x40x4l20kq8af1w7wj")))) + (build-system cargo-build-system) + #; + (arguments + `(#:skip-build? #t)) + (home-page "https://github.com/la10736/temp_testdir") + (synopsis "Use a temp directory") + (description + "This is a little crate to use a temp directory in crate. You can chose +whether to delete it after use or not for debugging purposes.") + (license (list license:expat license:asl2.0)))) + (define-public rust-tempdir-0.3 (package (name "rust-tempdir") |