diff options
author | Maxim Cournoyer <[email protected]> | 2024-12-11 10:49:10 +0900 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:15:08 +0200 |
commit | 051c6e3b8ad66dcb55e123807d1de6fd5f72f3a7 (patch) | |
tree | 37ef29ed069b8493cb4fe8e59f2220df00fce580 /gnu/packages/rust-apps.scm | |
parent | 97d78517b78b552b7dfaa2283b4611bd674811f7 (diff) |
gnu: Add rust-py-spy-testdata-0.1.
* gnu/packages/rust-apps.scm (rust-py-spy-testdata-0.1): New variable.
Change-Id: Ic7aff58e69e84c28f967d935c409e2981fdf6f1e
Signed-off-by: Efraim Flashner <[email protected]>
Diffstat (limited to 'gnu/packages/rust-apps.scm')
-rw-r--r-- | gnu/packages/rust-apps.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 0e513f3db3..c6d55107a6 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -12,7 +12,7 @@ ;;; Copyright © 2021 Sharlatan Hellseher <[email protected]> ;;; Copyright © 2021, 2022 Zheng Junjie <[email protected]> ;;; Copyright © 2021 Alexandru-Sergiu Marton <[email protected]> -;;; Copyright © 2021, 2023 Maxim Cournoyer <[email protected]> +;;; Copyright © 2021, 2023, 2024 Maxim Cournoyer <[email protected]> ;;; Copyright © 2021, 2022 Petr Hodina <[email protected]> ;;; Copyright © 2021 jgart <[email protected]> ;;; Copyright © 2021 Nicolas Graves <[email protected]> @@ -2117,6 +2117,24 @@ container management applications.") decompressing files and directories.") (license license:expat))) +(define-public rust-py-spy-testdata-0.1 + (hidden-package ; Uninteresting for users. + (package + (name "rust-py-spy-testdata") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "py-spy-testdata" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "18d880f2rjdd42828srh97vpvlrs9pg23j28gphw9qd2w3bp128q")))) + (build-system cargo-build-system) + (home-page "https://github.com/benfred/py-spy-testdata") + (synopsis "Python coredumps for testing py-spy") + (description "This package provides Python coredumps for testing py-spy.") + (license license:expat)))) + (define-public ripgrep (package (name "ripgrep") |