summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-05-26 11:39:52 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commitb0d3bfd39f3392a5e37462165e6df7a795721f3b (patch)
tree35e1359e8f48228236af1527d55e293a6fe99fce
parent061156143f8ba8c3aa0c629ecc366243911fe72f (diff)
siguix: Add emacs-iscroll.
* siguix/packages/emacs-iscroll.scm (emacs-iscroll): New variable.
-rw-r--r--siguix/packages/emacs-iscroll.scm49
1 files changed, 49 insertions, 0 deletions
diff --git a/siguix/packages/emacs-iscroll.scm b/siguix/packages/emacs-iscroll.scm
new file mode 100644
index 0000000..2305f7d
--- /dev/null
+++ b/siguix/packages/emacs-iscroll.scm
@@ -0,0 +1,49 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2022 Simon Streit <simon@netpanic.org>
+;;;
+;;; This file is NOT part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (siguix packages emacs-iscroll)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system emacs))
+
+(define-public emacs-iscroll
+ (let ((commit "d6e11066169d232fe23c2867d44c012722ddfc5a")
+ (revision "0")
+ (version "1.28.0"))
+ (package
+ (name "emacs-iscroll")
+ (version (git-version "0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference (url "https://github.com/casouri/iscroll")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0pbcr5bwmw2ikwg266q2fpxaf0z5h5cl1rp3rhhn9i9yn7hlfc78"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/casouri/iscroll")
+ (synopsis "Smooth scrolling over images in Emacs")
+ (description
+ "Gone are the days when images jumps in and out of the window when
+scrolling! This package provides smooth scrolling over images.
+
+Due to some technical problems, the code is not merging into Emacs in
+the near futher. When it finally does merge, this package can retire.")
+ (license license:gpl3))))