all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Brian Leung <bkleung89@gmail.com>
To: John Soo <jsoo1@asu.edu>
Cc: 38487@debbugs.gnu.org
Subject: [bug#38487] [PATCH] gnu: Add ghc-apply-refact.
Date: Thu, 23 Jan 2020 20:45:01 -0800	[thread overview]
Message-ID: <CAAc=MEw-hByymoAYtyvYmkENKD9Z3--z_tkQbPd+YmRBfmXovg@mail.gmail.com> (raw)
In-Reply-To: <CAKf5CqVnrSza8kPDi_=NgZDEU4tJ5GU+xgbGCDoSXLR-Y49q9A@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 517 bytes --]

Hi John,

Thanks for your reply. I tested it just now and it seems to work. I've made
your suggested changes and also attached a related patch.

Best,
Brian

On Fri, Jan 17, 2020 at 8:33 AM John Soo <jsoo1@asu.edu> wrote:

> Hi Brian,
>
> Thanks for another haskell tool! I built it this morning and it built.
> I do not use apply-refact, though. Have you been using it with
> success?
>
> My only thought is to move this package to haskell-apps.scm and call
> the package apply-refact. What do you think?
>
> John
>

[-- Attachment #1.2: Type: text/html, Size: 898 bytes --]

[-- Attachment #2: 0001-gnu-Add-apply-refact.patch --]
[-- Type: text/x-patch, Size: 2176 bytes --]

From 477b6b85eff0534e25e25bd990c7c2d2f5783294 Mon Sep 17 00:00:00 2001
From: Brian Leung <leungbk@mailfence.com>
Date: Thu, 23 Jan 2020 19:26:27 -0800
Subject: [PATCH 1/2] gnu: Add apply-refact.

* gnu/packages/haskell-apps.scm (apply-refact): New variable.
---
 gnu/packages/haskell-apps.scm | 38 +++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
index 5b5b20cd65..38d043cf6d 100644
--- a/gnu/packages/haskell-apps.scm
+++ b/gnu/packages/haskell-apps.scm
@@ -49,6 +49,44 @@
   #:use-module (gnu packages rsync)
   #:use-module (gnu packages version-control))
 
+(define-public apply-refact
+  (package
+    (name "apply-refact")
+    (version "0.6.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://hackage.haskell.org/package/apply-refact/apply-refact-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0p2mqgjcqr1zcmk8zgr0yq7g8z1agsa6l493lkj6g3ya9lyhxgig"))))
+    (build-system haskell-build-system)
+    (inputs
+     `(("ghc-refact" ,ghc-refact)
+       ("ghc-exactprint" ,ghc-exactprint)
+       ("ghc-syb" ,ghc-syb)
+       ("ghc-temporary" ,ghc-temporary)
+       ("ghc-filemanip" ,ghc-filemanip)
+       ("ghc-unix-compat" ,ghc-unix-compat)
+       ("ghc-optparse-applicative"
+        ,ghc-optparse-applicative)))
+    (native-inputs
+     `(("ghc-tasty" ,ghc-tasty)
+       ("ghc-tasty-golden" ,ghc-tasty-golden)
+       ("ghc-tasty-expected-failure"
+        ,ghc-tasty-expected-failure)
+       ("ghc-silently" ,ghc-silently)))
+    (home-page
+     "http://hackage.haskell.org/package/apply-refact")
+    (synopsis
+     "Perform refactorings specified by the refact library.")
+    (description
+     "Perform refactorings specified by the refact library. It is primarily used with HLint's --refactor flag.")
+    (license license:bsd-3)))
+
 ;; In Stackage LTS 14, this package is at 2.4.1.0.  However, that
 ;; version requires version 2.4.1.0 of the 'Cabal' package, which is
 ;; provided by GHC 8.6.5 at version 2.4.0.1.  Hence, we use an older
-- 
2.24.0


[-- Attachment #3: 0002-gnu-Add-emacs-hlint-refactor-mode.patch --]
[-- Type: text/x-patch, Size: 2107 bytes --]

From 8eb239e18e98848ddbc20d6dc0677b270547c147 Mon Sep 17 00:00:00 2001
From: Brian Leung <leungbk@mailfence.com>
Date: Thu, 23 Jan 2020 20:36:20 -0800
Subject: [PATCH 2/2] gnu: Add emacs-hlint-refactor-mode.

* gnu/packages/emacs-xyz.scm (emacs-hlint-refactor-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 40839d4869..f119cf690b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -101,6 +101,7 @@
   #:use-module (gnu packages guile)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages haskell-apps)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-xyz)
@@ -15986,6 +15987,32 @@ text in neighboring sections.")
 Pandoc, the document-conversion tool.")
     (license license:bsd-3)))
 
+(define-public emacs-hlint-refactor-mode
+  (let ((commit "c4307f86aad6d02e32e9b30cb6edc115584c791c")
+        (revision "1"))
+    (package
+      (name "emacs-hlint-refactor-mode")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/mpickering/hlint-refactor-mode")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1c71w9s34n0i7mm4njchxn6s3ri1y6mh3akgbg4nq41d42h8iap3"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("apply-refact" ,apply-refact)
+         ("hlint" ,hlint)))
+      (home-page "https://github.com/mpickering/hlint-refactor-mode")
+      (synopsis "Emacs bindings for @code{hlint}'s @code{--refactor} option")
+      (description "This package applies refactoring suggestions from
+@code{hlint}.")
+      (license license:expat))))
+
 (define-public emacs-ccls
   (let ((commit "aab3e31fd716daf59f9794e62d473357263e8cc0")
         (revision "4"))
-- 
2.24.0


  reply	other threads:[~2020-01-24  4:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-04  7:04 [bug#38487] [PATCH] Add ghc-apply-refact Brian Leung
2020-01-17 16:33 ` [bug#38487] [PATCH] gnu: " John Soo
2020-01-24  4:45   ` Brian Leung [this message]
2020-03-29 19:05     ` bug#38487: " Marius Bakke

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAAc=MEw-hByymoAYtyvYmkENKD9Z3--z_tkQbPd+YmRBfmXovg@mail.gmail.com' \
    --to=bkleung89@gmail.com \
    --cc=38487@debbugs.gnu.org \
    --cc=jsoo1@asu.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.