Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ configureCabalFlags' (PackageIdentifier name version)
= [enable "system-lua", disable "use-pkgconfig"]
| name == "idris" = [enable "gmp", enable "ffi", enable "curses", ("execonly", version `withinRange` orLaterVersion (mkVersion [1,1,1])) ]
| name == "io-streams" = [enable "NoInteractiveTests"]
| name == "liquid-fixpoint" = [enable "build-external"]
| name == "lua" && version >= mkVersion [2,0,0]
= [enable "system-lua", disable "use-pkgconfig"]
| name == "pandoc" = [disable "trypandoc"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ hooks =
, ("js-jquery", set doCheck False) -- attempts to access the network
, ("libconfig", over (libraryDepends . system) (replace "config = null" (pkg "libconfig")))
, ("libxml", set (configureFlags . contains "--extra-include-dir=${lib.getDev libxml2}/include/libxml2") True)
, ("liquid-fixpoint", set (testDepends . system . contains (pkg "z3")) True . set (testDepends . system . contains (pkg "nettools")) True . set (testDepends . system . contains (pkg "git")) True . set doCheck False)
, ("liquidhaskell", set (testDepends . system . contains (pkg "z3")) True)
, ("lua >= 2.0.0 && < 2.2.0", over (libraryDepends . system) (replace (pkg "lua") (pkg "lua5_3")))
, ("lua >= 2.2.0", over (libraryDepends . system) (replace (pkg "lua") (pkg "lua5_4")))
Expand Down
Loading