From b64d33ede91c797996b378e61ae11c6209cc0a63 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 22 Oct 2021 22:08:55 +0200 Subject: [PATCH] =?UTF-8?q?retour=20en=20arri=C3=A8re?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glicid/packages/glicid.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 8b22a40..48ccc50 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -1223,6 +1223,34 @@ in the @code{debug} output), and binutils."))) ) +(define-public snappy-1.1.8 + (package + (name "snappy") + (version "1.1.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/snappy") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j0kslq2dvxgkcxl1gakhvsa731yrcvcaipcp5k8k7ayicvkv9jv")) + (patches (search-patches "snappy-add-O2-flag-in-CmakeLists.txt.patch")))) + (build-system cmake-build-system) + (arguments + `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) + (home-page "https://github.com/google/snappy") + (synopsis "Fast compressor/decompressor") + (description "Snappy is a compression/decompression library. It does not +aim for maximum compression, or compatibility with any other compression library; +instead, it aims for very high speeds and reasonable compression. For instance, +compared to the fastest mode of zlib, Snappy is an order of magnitude faster +for most inputs, but the resulting compressed files are anywhere from 20% to +100% bigger.") + (license license:asl2.0))) + + (define-public glicid-ceph-15 (package (name "glicid-ceph-15")