[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/22: gnu: Add apply-refact.
From: |
guix-commits |
Subject: |
02/22: gnu: Add apply-refact. |
Date: |
Sun, 29 Mar 2020 16:37:45 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 79617a0122d9fa27f193f73918859d46d6ea5cfe
Author: Brian Leung <address@hidden>
AuthorDate: Thu Jan 23 19:26:27 2020 -0800
gnu: Add apply-refact.
* gnu/packages/haskell-apps.scm (apply-refact): New variable.
Signed-off-by: Marius Bakke <address@hidden>
---
gnu/packages/haskell-apps.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
index 42ceb07..6ab9621 100644
--- a/gnu/packages/haskell-apps.scm
+++ b/gnu/packages/haskell-apps.scm
@@ -14,6 +14,7 @@
;;; Copyright © 2019 Efraim Flashner <address@hidden>
;;; Copyright © 2019 Alex Griffin <address@hidden>
;;; Copyright © 2020 Alexandru-Sergiu Marton <address@hidden>
+;;; Copyright © 2020 Brian Leung <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -50,6 +51,42 @@
#: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 "https://hackage.haskell.org/package/apply-refact")
+ (synopsis "Perform refactorings specified by the refact library")
+ (description
+ "This package lets you perform refactorings specified by the refact
+library. It is primarily used with HLint's @code{--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
- branch master updated (9e9dd40 -> 3bf45ff), guix-commits, 2020/03/29
- 01/22: gnu: Move the deprecated 'ghc-stylish-haskell' closer to its replacement., guix-commits, 2020/03/29
- 07/22: gnu: Add ghc-pwstore-fast., guix-commits, 2020/03/29
- 08/22: gnu: Add ghc-html-conduit., guix-commits, 2020/03/29
- 10/22: gnu: ghc-persistent-template: Update to 2.8.0., guix-commits, 2020/03/29
- 11/22: gnu: Add ghc-persistent-test., guix-commits, 2020/03/29
- 12/22: gnu: ghc-persistent-sqlite: Update to 2.10.5.2., guix-commits, 2020/03/29
- 04/22: gnu: Add ghc-project-template., guix-commits, 2020/03/29
- 03/22: gnu: Add emacs-hlint-refactor-mode., guix-commits, 2020/03/29
- 02/22: gnu: Add apply-refact.,
guix-commits <=
- 13/22: gnu: ghc-scalpel: Fix typo in description., guix-commits, 2020/03/29
- 22/22: gnu: font-jetbrains-mono: Update to 1.0.3., guix-commits, 2020/03/29
- 14/22: gnu: ghc-yesod-persistent: Update to 1.6.0.4., guix-commits, 2020/03/29
- 09/22: gnu: ghc-persistent: Update to 2.10.4., guix-commits, 2020/03/29
- 18/22: gnu: Add vl1-emulator., guix-commits, 2020/03/29
- 19/22: gnu: Add regrader., guix-commits, 2020/03/29
- 16/22: gnu: emacs-next: Add harfbuzz (text shaping engine) to inputs., guix-commits, 2020/03/29
- 15/22: gnu: ghc-esqueleto: Update to 3.3.1.1., guix-commits, 2020/03/29
- 06/22: gnu: Add ghc-nonce., guix-commits, 2020/03/29
- 05/22: gnu: Add ghc-basic-prelude., guix-commits, 2020/03/29