Skip to content
Merged
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
4 changes: 3 additions & 1 deletion pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1099,9 +1099,11 @@ with haskellLib;
}
sed -i ${name}.cabal \
-e 's/\(bytestring\) .*/\1/w c1' \
-e 's/\(text\) .*/\1/w c2'
-e 's/\(text\) .*/\1/w c2' \
-e 's/\(aeson\) .*/\1/w c3'
check_sed c1 'bytestring .*'
check_sed c2 'text .*'
${lib.optionalString (name == "selda-json") "check_sed c3 'aeson .*'"}
'';
}) super.${name};
in
Expand Down