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 lib/cabal-project-parser.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ let
let
# Look for a new attribute name
pair = builtins.match "([^ :]*): *(.*)" s;
trim = x: let m = builtins.match "(.*[^ \t])[ \t]*" x;
in pkgs.lib.optionalString (m != null) (builtins.head m);

# Function to build the next parse state when the attribute name is known
nextState = name: value: {
Expand All @@ -62,7 +64,7 @@ let
if pair != null
then
# First line of a new attribute
nextState (builtins.head pair) (builtins.elemAt pair 1)
nextState (builtins.head pair) (trim (builtins.elemAt pair 1))
else
if name != null
then nextState name s # Append another line to the current attribute
Expand Down
Loading