diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-29 16:58:54 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-29 16:58:54 +0200 |
commit | 9e17757ff5d8d5159bda789cf4b3e28105b40adf (patch) | |
tree | 84f94de701487e1fe4d4a3b6d73a4bbeaec0b3ec /gnu/packages/compression.scm | |
parent | 9587544b447db9a4952b8c368c5600f8ac439ff9 (diff) | |
download | patches-9e17757ff5d8d5159bda789cf4b3e28105b40adf.tar patches-9e17757ff5d8d5159bda789cf4b3e28105b40adf.tar.gz |
Revert "gnu: snappy: Optimise."
This causes too many rebuilds for the master branch.
This reverts commit f96ed06805db934ff735e80596f1373dc1c2b5a8.
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 4619f385bb..666c9bfc3e 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1154,15 +1154,14 @@ algorithm within the Numpy framework.") (package (name "snappy") (version "1.1.7") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/google/snappy/archive/" - version ".tar.gz")) - (file-name (string-append "snappy-" version ".tar.gz")) - (sha256 - (base32 "1m7rcdqzkys5lspj8jcsaah8w33zh28s771bw0ga2lgzfgl05yix")) - (patches (search-patches "snappy-add-O2-flag-in-CmakeLists.txt.patch")))) + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/google/snappy/archive/" + version ".tar.gz")) + (file-name (string-append "snappy-" version ".tar.gz")) + (sha256 + (base32 + "1m7rcdqzkys5lspj8jcsaah8w33zh28s771bw0ga2lgzfgl05yix")))) (build-system cmake-build-system) (arguments `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) |