me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-optick-1.

* gnu/packages/crates-io.scm (rust-optick-1): New variable.

Change-Id: I88538ff2ea2b0027da1a287ac3df67ef03ce21e0
master
Efraim Flashner 2024-01-07 12:02:25 +02:00
parent abb0fc1560
commit e4d52a7829
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -45754,6 +45754,28 @@ system for OpenSSL.")
(description "This package provides an OPML parser for Rust.")
(license (list license:expat license:asl2.0))))
(define-public rust-optick-1
(package
(name "rust-optick")
(version "1.3.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "optick" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0j35dj8ggfpcc399h1ljm6xfz8kszqc4nrw3vcl9kfndd1hapryp"))
(snippet
#~(begin (use-modules (guix build utils))
(delete-file-recursively "external")))))
(build-system cargo-build-system)
(arguments
'(#:tests? #f)) ; Needs optick library
(home-page "https://github.com/bombomby/optick-rs")
(synopsis "Lightweight Performance Profiler")
(description "Super Lightweight Performance Profiler.")
(license license:expat)))
(define-public rust-option-ext-0.2
(package
(name "rust-option-ext")