-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rerun cabal-files build rule, picking up package.dhall reformats, #536.
- Loading branch information
1 parent
63064ff
commit ecacca3
Showing
32 changed files
with
2,998 additions
and
2,889 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
let defs = ./../defaults.dhall | ||
let defs = ./../defaults.dhall | ||
|
||
in defs | ||
⫽ ./../default-extensions-ghcjs.dhall | ||
|
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,4 +1,4 @@ | ||
let mkHome = ./../home.dhall | ||
let mkHome = ./../home.dhall | ||
|
||
in ./../defaults.dhall | ||
⫽ { name = | ||
|
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,46 +1,46 @@ | ||
let mkHome = ./../home.dhall | ||
let mkHome = ./../home.dhall | ||
|
||
in let defs = ./../defaults.dhall | ||
|
||
in defs | ||
⫽ ./../default-extensions.dhall | ||
⫽ { name = | ||
"flight-clip" | ||
, homepage = | ||
mkHome "lang-haskell/clip#readme" | ||
, version = | ||
"1.1.0" | ||
, synopsis = | ||
"Clipping a pilot's tracklogs." | ||
, description = | ||
"Provides types and typeclasses for clipping a tracklog." | ||
, category = | ||
"Data, Parsing, Flight" | ||
, dependencies = | ||
defs.dependencies # [ "split", "time" ] | ||
, library = | ||
{ source-dirs = | ||
"library" | ||
, exposed-modules = | ||
[ "Flight.Clip", "Flight.Track.Range" ] | ||
} | ||
, tests = | ||
./../default-tests.dhall | ||
⫽ { doctest = | ||
{ dependencies = | ||
[ "doctest", "QuickCheck" ] | ||
, ghc-options = | ||
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ] | ||
, main = | ||
"DocTest.hs" | ||
, source-dirs = | ||
[ "library", "test-suite-doctest" ] | ||
, when = | ||
{ condition = | ||
"flag(suppress-failing-tests)" | ||
, buildable = | ||
False | ||
|
||
in defs | ||
⫽ ./../default-extensions.dhall | ||
⫽ { name = | ||
"flight-clip" | ||
, homepage = | ||
mkHome "lang-haskell/clip#readme" | ||
, version = | ||
"1.1.0" | ||
, synopsis = | ||
"Clipping a pilot's tracklogs." | ||
, description = | ||
"Provides types and typeclasses for clipping a tracklog." | ||
, category = | ||
"Data, Parsing, Flight" | ||
, dependencies = | ||
defs.dependencies # [ "split", "time" ] | ||
, library = | ||
{ source-dirs = | ||
"library" | ||
, exposed-modules = | ||
[ "Flight.Clip", "Flight.Track.Range" ] | ||
} | ||
, tests = | ||
./../default-tests.dhall | ||
⫽ { doctest = | ||
{ dependencies = | ||
[ "doctest", "QuickCheck" ] | ||
, ghc-options = | ||
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ] | ||
, main = | ||
"DocTest.hs" | ||
, source-dirs = | ||
[ "library", "test-suite-doctest" ] | ||
, when = | ||
{ condition = | ||
"flag(suppress-failing-tests)" | ||
, buildable = | ||
False | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,40 +1,40 @@ | ||
let mkHome = ./../home.dhall | ||
let mkHome = ./../home.dhall | ||
|
||
in let defs = ./../defaults.dhall | ||
|
||
in defs | ||
⫽ ./../default-extensions.dhall | ||
⫽ { name = | ||
"flight-cmd" | ||
, homepage = | ||
mkHome "lang-haskell/cmd#readme" | ||
, synopsis = | ||
"Command line options." | ||
, description = | ||
"Command line options such as file or directory, task or pilot." | ||
, category = | ||
"Flight" | ||
, dependencies = | ||
defs.dependencies | ||
# [ "directory" | ||
, "filepath" | ||
, "filemanip" | ||
, "raw-strings-qq" | ||
, "cmdargs" | ||
, "mtl" | ||
, "transformers" | ||
, "flight-span" | ||
] | ||
, library = | ||
{ source-dirs = | ||
"library" | ||
, exposed-modules = | ||
[ "Flight.Cmd.Options" | ||
, "Flight.Cmd.BatchOptions" | ||
, "Flight.Cmd.ServeOptions" | ||
, "Flight.Cmd.Paths" | ||
] | ||
|
||
in defs | ||
⫽ ./../default-extensions.dhall | ||
⫽ { name = | ||
"flight-cmd" | ||
, homepage = | ||
mkHome "lang-haskell/cmd#readme" | ||
, synopsis = | ||
"Command line options." | ||
, description = | ||
"Command line options such as file or directory, task or pilot." | ||
, category = | ||
"Flight" | ||
, dependencies = | ||
defs.dependencies | ||
# [ "directory" | ||
, "filepath" | ||
, "filemanip" | ||
, "raw-strings-qq" | ||
, "cmdargs" | ||
, "mtl" | ||
, "transformers" | ||
, "flight-span" | ||
] | ||
, library = | ||
{ source-dirs = | ||
"library" | ||
, exposed-modules = | ||
[ "Flight.Cmd.Options" | ||
, "Flight.Cmd.BatchOptions" | ||
, "Flight.Cmd.ServeOptions" | ||
, "Flight.Cmd.Paths" | ||
] | ||
} | ||
, tests = | ||
./../default-tests.dhall | ||
} | ||
, tests = | ||
./../default-tests.dhall | ||
} |
Oops, something went wrong.