guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4ce5b1619dff04c4116a65b52c59f1655397fdd7
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Fri Oct 10 19:06:55 2025 +0200

    gnu: Add emacs-deflate.
    
    * gnu/packages/emacs-xyz.scm (emacs-deflate): New variable.
    
    Change-Id: I64a04a28f9bb558e05da871a4a988cb9b461a4ee
---
 gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8d5d82ab33..afeeed0eca 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -22272,6 +22272,35 @@ source file, @file{jl-encrypt.el}.")
 (define-public emacs-default-encrypt
   (deprecated-package "emacs-default-encrypt" emacs-defaultencrypt))
 
+(define-public emacs-deflate
+  (package
+    (name "emacs-deflate")
+    (version "0.0.5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/skuro/deflate";)
+                     (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "15zrjv3wqnqzscjy7vny6j13dy12vzri1i9zzmj2jii3x7wdkv4b"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:test-command #~(list "ert-runner" "test/")))
+    (native-inputs (list emacs-ert-runner))
+    (propagated-inputs (list emacs-dash))
+    (home-page "https://github.com/skuro/deflate";)
+    (synopsis "Elisp implementation of the DEFLATE algorithm")
+    (description
+     "This Emacs library implements the DEFLATE algorithm specified in RFC 
1951.
+
+While the scope of this project is to write a full implementation of the
+algorithm, there is currently no interest of developing the best compression
+ratios on the planet, but rather being able to support DEFLATE (and a little
+bit of zlib) in Emacs in a portable fashion.")
+    (license license:gpl3+)))
+
 ;; Package has no release.  Version is extracted from "Version:" keyword in
 ;; main file.
 (define-public emacs-exotica-theme

Reply via email to