-
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.
- Loading branch information
1 parent
d4ded7b
commit dc71903
Showing
3 changed files
with
65 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ mkDerivation, aeson, ansi-terminal, array, base, binary | ||
, bytestring, Cabal-syntax, choice, containers, deepseq, Diff | ||
, directory, file-embed, filepath, ghc-lib-parser, hspec | ||
, hspec-discover, hspec-megaparsec, lib, megaparsec, MemoTrie, mtl | ||
, optparse-applicative, path, path-io, pretty, process, QuickCheck | ||
, scientific, syb, temporary, terminal-size, text, th-env, yaml | ||
}: | ||
mkDerivation { | ||
pname = "fourmolu"; | ||
version = "0.17.0.0"; | ||
sha256 = "1a3a8c39de4f489ab045c6e0094b633c8d35552efe220f2424350697c58defd9"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
aeson ansi-terminal array base binary bytestring Cabal-syntax | ||
choice containers deepseq Diff directory file-embed filepath | ||
ghc-lib-parser megaparsec MemoTrie mtl scientific syb text | ||
]; | ||
executableHaskellDepends = [ | ||
base Cabal-syntax containers directory filepath ghc-lib-parser | ||
optparse-applicative terminal-size text th-env yaml | ||
]; | ||
testHaskellDepends = [ | ||
base bytestring Cabal-syntax choice containers Diff directory | ||
filepath ghc-lib-parser hspec hspec-megaparsec megaparsec path | ||
path-io pretty process QuickCheck temporary text yaml | ||
]; | ||
testToolDepends = [ hspec-discover ]; | ||
homepage = "https://github.com/fourmolu/fourmolu"; | ||
description = "A formatter for Haskell source code"; | ||
license = lib.licenses.bsd3; | ||
mainProgram = "fourmolu"; | ||
} |
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