Skip to content

Commit e27eb42

Browse files
committed
Fix indentation issue
1 parent f828e46 commit e27eb42

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

overlays/cabal-pkg-config.nix

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ final: prev:
2020
if [[ "\$1" == "--list-all" ]]; then
2121
OUTPUT=\$(mktemp)
2222
ERROR=\$(mktemp)
23-
cat <<EOF
24-
${final.pkgs.lib.concatStrings (map (name: ''
25-
${name}
26-
'') (__attrNames pkgconfigPkgs))
27-
}
28-
EOF
23+
cat <<EOF2
24+
${final.pkgs.lib.concatStrings (map (name: ''
25+
${name}
26+
'') (__attrNames pkgconfigPkgs))
27+
}
28+
EOF2
2929
elif [[ "\$1" == "--modversion" ]]; then
3030
OUTPUT=\$(mktemp)
3131
ERROR=\$(mktemp)
32-
cat <<EOF
33-
${final.pkgs.lib.concatStrings (map (p: ''
34-
${(builtins.head p).version}
35-
'') (__attrValues pkgconfigPkgs))
36-
}
37-
EOF
32+
cat <<EOF2
33+
${final.pkgs.lib.concatStrings (map (p: ''
34+
${(builtins.head p).version}
35+
'') (__attrValues pkgconfigPkgs))
36+
}
37+
EOF2
3838
else
3939
$out/bin/${attrs.targetPrefix}${attrs.baseBinName}-wrapped "\$@"
4040
fi

0 commit comments

Comments
 (0)