guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

21/36: gnu: Add snappy.


From: David Craven
Subject: 21/36: gnu: Add snappy.
Date: Thu, 18 Aug 2016 15:58:30 +0000 (UTC)

dvc pushed a commit to branch master
in repository guix.

commit e4c2136ddfbe6150de5b263b80a52451ee423a25
Author: David Craven <address@hidden>
Date:   Mon Aug 15 01:17:18 2016 +0200

    gnu: Add snappy.
    
    * gnu/packages/compression.scm (snappy): New variable.
    
    Co-authored-by: Alex Kost <address@hidden>
---
 gnu/packages/compression.scm |   24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index e63c1af..c239d16 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2016 Ben Woodcroft <address@hidden>
 ;;; Copyright © 2016 Danny Milosavljevic <address@hidden>
 ;;; Copyright © 2016 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2016 David Craven <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -871,3 +872,26 @@ even LZMA can provide, or a higher speed than gzip while 
compressing as
 well as bzip2.")
     (license (list license:gpl3+
                    license:public-domain)))) ; most files in lzma/
+
+(define-public snappy
+  (package
+    (name "snappy")
+    (version "1.1.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/google/snappy/releases/download/";
+                    version "/" name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1wzf8yif5ym2gj52db6v5m1pxnmn258i38x7llk9x346y2nq47ig"))))
+    (build-system gnu-build-system)
+    (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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]