diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-04 16:23:43 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-04 17:07:48 +0100 |
commit | 2e142b1c624e33747800b45826741daeb0ad782f (patch) | |
tree | 53dbd65b27ac6b7b65944b29c4a1642be0ba11fe /gnu/packages | |
parent | 9aa8f57f40e485e692d7e8924c04bbcc82c48a45 (diff) | |
download | guix-2e142b1c624e33747800b45826741daeb0ad782f.tar.gz guix-2e142b1c624e33747800b45826741daeb0ad782f.zip |
gnu: simde: Update to 0.7.2.
* gnu/packages/assembly.scm (simde): Update to 0.7.2.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/assembly.scm | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm index 38d157bd5d..9db1834d27 100644 --- a/gnu/packages/assembly.scm +++ b/gnu/packages/assembly.scm @@ -152,23 +152,16 @@ to the clients.") (define-public simde (package (name "simde") - (version "0.7.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/simd-everywhere/simde") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1xf5xfzkk9rj47cichgz5ni8xs9hbpz5p6fmxr4ij721ffd002k3")) - (modules '((guix build utils))) - (snippet - '(begin - ;; Fix the version string - (substitute* "meson.build" - (("0.7.0-rc2") "0.7.0")) - #t)))) + (version "0.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/simd-everywhere/simde") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xkf21gbkgz6zlxabkmgwvy7py6cdnfqx9aplj90gz25gzrr1mkb")))) (build-system meson-build-system) ;; We really want this for the headers, and the tests require a bundled library. (arguments '(#:configure-flags '("-Dtests=false"))) |