mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
Merge pull request #20652 from Profpatsch/hdbc-odbc-haddock
haskellPackages: fix HDBC-odbc haddockPhase
This commit is contained in:
commit
88fa370992
@ -144,7 +144,6 @@ self: super: {
|
||||
groupoids = dontHaddock super.groupoids;
|
||||
hamlet = dontHaddock super.hamlet;
|
||||
HaXml = dontHaddock super.HaXml;
|
||||
HDBC-odbc = dontHaddock super.HDBC-odbc;
|
||||
hoodle-core = dontHaddock super.hoodle-core;
|
||||
hsc3-db = dontHaddock super.hsc3-db;
|
||||
http-client-conduit = dontHaddock super.http-client-conduit;
|
||||
@ -1067,6 +1066,15 @@ self: super: {
|
||||
# https://github.com/roelvandijk/terminal-progress-bar/issues/13
|
||||
terminal-progress-bar = doJailbreak super.terminal-progress-bar;
|
||||
|
||||
# https://github.com/hdbc/hdbc-odbc/pull/29
|
||||
HDBC-odbc = overrideCabal super.HDBC-odbc (old: {
|
||||
postPatch = old.postPatch or "" + ''
|
||||
sed -e '/data BoundValue =/ { s/$/{/ ; n; n ; s/{ bvVal/ bvVal/ }' \
|
||||
-e 's/-- | This is rather/-- This is rather/' \
|
||||
-i Database/HDBC/ODBC/Statement.hsc
|
||||
'';
|
||||
});
|
||||
|
||||
# https://github.com/vshabanov/HsOpenSSL/issues/11
|
||||
HsOpenSSL = doJailbreak super.HsOpenSSL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user