me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-fork-0.1.

* gnu/packages/crates-io.scm (rust-fork-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Aleksandr Vityazev 2023-10-07 03:01:34 +03:00 committed by Efraim Flashner
parent c034a892a3
commit 8bb54c84de
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -26163,6 +26163,29 @@ implementation that is more efficient for smaller hash keys.")
(base32
"0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00"))))))
(define-public rust-fork-0.1
(package
(name "rust-fork")
(version "0.1.22")
(source
(origin
(method url-fetch)
(uri (crate-uri "fork" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"124fbfwqka5xh2jndmlpgbl2ya7a9yf7q6adxvkja510b5xajb5z"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
(home-page "https://docs.rs/fork/latest/fork/")
(synopsis
"Library for creating a new process detached from the controlling terminal")
(description
"This package provides library for creating a new process detached from
the controling terminal (daemon) using the fork and setsid syscalls.")
(license license:bsd-3)))
(define-public rust-form-urlencoded-1
(package
(name "rust-form-urlencoded")