diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-12-14 16:10:32 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-12-21 19:22:55 +0200 |
commit | 53436955c42430690457e89399984709894616c0 (patch) | |
tree | 9524012f358667ae5f99ec282d47abc3ab6bd013 /gnu | |
parent | 826e6414a4f7229a7ba616109e105c61adc4d7c4 (diff) | |
download | guix-53436955c42430690457e89399984709894616c0.tar.gz guix-53436955c42430690457e89399984709894616c0.zip |
gnu: julia-scanbyte: Limit to x86_64-linux.
* gnu/packages/julia-xyz.scm (julia-scanbyte)[supported-systems]: New
field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index d3d8bb5c4e..6a610a3268 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -5100,6 +5100,8 @@ a loadable module.") (description "This package finds the first occurrence of a byte or set of bytes in a chunk of memory. Think of it like a much faster version of @code{findfirst} that only iterates over bytes in memory.") + ;; https://github.com/jakobnissen/ScanByte.jl/issues/2 + (supported-systems '("x86_64-linux")) (license license:expat))) (define-public julia-scratch |