forked from robdockins/shellac
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update shellac packages to compile on recent GHC
- Loading branch information
1 parent
f855faa
commit 745390b
Showing
11 changed files
with
63 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env runhaskell | ||
import Distribution.Simple | ||
main = defaultMain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env runhaskell | ||
import Distribution.Simple | ||
main = defaultMain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
Name: Shellac-readline | ||
Version: 0.9 | ||
Version: 0.9.9 | ||
Cabal-Version: >= 1.22 | ||
License: BSD3 | ||
License-File: LICENSE | ||
Author: Robert Dockins | ||
Maintainer: robdockins AT fastmail DOT fm | ||
Category: User Interfaces | ||
Stability: Beta | ||
Synopsis: Readline backend module for Shellac | ||
Homepage: http://rwd.rdockins.name/shellac/home/ | ||
Description: | ||
This package provides a Shellac backend based on the GNU readline | ||
library. This backend features all the line editing capabilities | ||
provided by readline, as well as command completion and command | ||
history features. | ||
Hs-Source-Dirs: | ||
|
||
Library | ||
Hs-Source-Dirs: | ||
src | ||
Build-Depends: | ||
base >= 1.0, | ||
haskell98 >= 1.0, | ||
Build-Depends: | ||
base == 4.*, | ||
readline >= 1.0, | ||
Shellac >= 0.9 | ||
Exposed-modules: | ||
System.Console.Shell.Backend.Readline | ||
Extensions: | ||
ForeignFunctionInterface | ||
Shellac | ||
Exposed-modules: | ||
System.Console.Shell.Backend.Readline | ||
Extensions: | ||
ForeignFunctionInterface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
packages: | ||
- . | ||
- shellac-readline | ||
- shellac-compatline | ||
extra-deps: | ||
- readline-1.0.3.0 | ||
resolver: lts-3.3 |