File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
{ stdenv , lib , haskellLib , buildPackages } :
2
- drv :
2
+ let self = drv :
3
3
4
4
let
5
5
component = drv . config ;
@@ -28,6 +28,8 @@ in stdenv.mkDerivation ((
28
28
29
29
passthru = {
30
30
inherit ( drv ) identifier config configFiles executableToolDepends cleanSrc env exeName ;
31
+ profiled = self drv . profiled ;
32
+ dwarf = self drv . dwarf ;
31
33
} ;
32
34
33
35
inherit ( drv ) meta LANG LC_ALL buildInputs ;
@@ -63,3 +65,4 @@ in stdenv.mkDerivation ((
63
65
}
64
66
// lib . optionalAttrs ( drv ? LOCALE_ARCHIVE ) { inherit ( drv ) LOCALE_ARCHIVE ; }
65
67
)
68
+ in self
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ in recurseIntoAttrs {
16
16
inherit ( project ) plan-nix ;
17
17
} ;
18
18
19
- meta . disable = haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 ;
19
+ meta . disabled = haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 ;
20
20
21
21
build = packages . js-template-haskell . components . library ;
22
22
check = packages . js-template-haskell . checks . test ;
23
23
} // optionalAttrs ( ! stdenv . hostPlatform . isGhcjs ) {
24
24
build-profiled = packages . js-template-haskell . components . library . profiled ;
25
- check = packages . js-template-haskell . checks . test . profiled ;
25
+ check-profiled = packages . js-template-haskell . checks . test . profiled ;
26
26
}
You can’t perform that action at this time.
0 commit comments