Skip to content

Commit

Permalink
Trim trailing whitespace parsing cabal.project
Browse files Browse the repository at this point in the history
Fixes #2252
  • Loading branch information
hamishmack committed Sep 24, 2024
1 parent 93f0d48 commit aaf37a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cabal-project-parser.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ let
parseBlockLines = blockLines: (pkgs.lib.foldl' ({name, attrs}: s:
let
# Look for a new attribute name
pair = builtins.match "([^ :]*): *(.*)" s;
pair = builtins.match "([^ :]*): *(.*[^ ]) *" s;

# Function to build the next parse state when the attribute name is known
nextState = name: value: {
Expand Down

0 comments on commit aaf37a0

Please sign in to comment.