diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-28 11:07:34 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:45:03 +0300 |
commit | f7fa61571a29a6510559f1f807b7bbc56a45960c (patch) | |
tree | 891395bba21afa2a82935521c620a156632d83b8 /gnu | |
parent | 521f6c2cf171431d6bfbe350e9b8f7cb114bb818 (diff) | |
download | guix-f7fa61571a29a6510559f1f807b7bbc56a45960c.tar.gz |
gnu: Add rust-is-wsl-0.4.
* gnu/packages/crates-io.scm (rust-is-wsl-0.4): New variable. Change-Id: Ida22a47dab92014fc5c598ce3feca74d0c0c01b9
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 3ac539bb8e..85a6caad43 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -33894,6 +33894,29 @@ whether or not a given path points to an executable file.") stream runs in a TTY.") (license license:expat))) +(define-public rust-is-wsl-0.4 + (package + (name "rust-is-wsl") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "is-wsl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "19bs5pq221d4bknnwiqqkqrnsx2in0fsk8fylxm1747iim4hjdhp")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-is-docker" ,rust-is-docker-0.2) + ("rust-once-cell" ,rust-once-cell-1)))) + (home-page "https://github.com/TheLarkInn/is-wsl") + (synopsis + "Checks if the process is running inside Windows Subsystem for Linux") + (description + "This package provides functions to check if the process is running inside +Windows Subsystem for Linux.") + (license license:expat))) + (define-public rust-iso8601-0.4 (package (name "rust-iso8601") |