Skip to content

Commit aed5ba0

Browse files
committed
Introduce use_same_package_name
to use the specified name as GHC package name. In some special cases (especially GHC boot libraries), the package name needs to be given as specified.
1 parent 77bd74c commit aed5ba0

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

decls/haskell_rules.bzl

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ haskell_library = prelude_rule(
186186
"linker_flags": attrs.list(attrs.arg(), default = []),
187187
"platform": attrs.option(attrs.string(), default = None),
188188
"platform_linker_flags": attrs.list(attrs.tuple(attrs.regex(), attrs.list(attrs.arg())), default = []),
189+
"use_same_package_name": attrs.bool(default = False),
189190
}
190191
),
191192
)

haskell/haskell.bzl

+6-2
Original file line numberDiff line numberDiff line change
@@ -789,8 +789,12 @@ def haskell_library_impl(ctx: AnalysisContext) -> list[Provider]:
789789
indexing_tsets = {}
790790
sub_targets = {}
791791

792-
libname = repr(ctx.label.path).replace("//", "_").replace("/", "_") + "_" + ctx.label.name
793-
pkgname = libname.replace("_", "-")
792+
if(ctx.attrs.use_same_package_name):
793+
libname = ctx.label.name
794+
pkgname = libname
795+
else:
796+
libname = repr(ctx.label.path).replace("//", "_").replace("/", "_") + "_" + ctx.label.name
797+
pkgname = libname.replace("_", "-")
794798

795799
md_file = target_metadata(
796800
ctx,

0 commit comments

Comments
 (0)