File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
pkgs/build-support/build-fhsenv-bubblewrap Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 55, writeText
66, writeShellScriptBin
77, pkgs
8- , pkgsi686Linux
8+ , pkgsHostTarget
99} :
1010
1111{ profile ? ""
3636# /lib will link to /lib64
3737
3838let
39+ # The splicing code does not handle `pkgsi686Linux` well, so we have to be
40+ # explicit about which package set it's coming from.
41+ inherit ( pkgsHostTarget ) pkgsi686Linux ;
42+
3943 name = if ( args ? pname && args ? version )
4044 then "${ args . pname } -${ args . version } "
4145 else args . name ;
212216 ln -fsr $d/glib-2.0/schemas/*.xml $out/usr/share/glib-2.0/schemas
213217 ln -fsr $d/glib-2.0/schemas/*.gschema.override $out/usr/share/glib-2.0/schemas
214218 done
215- ${ pkgs . glib . dev } /bin/glib-compile-schemas $out/usr/share/glib-2.0/schemas
219+ ${ pkgs . pkgsBuildBuild . glib . dev } /bin/glib-compile-schemas $out/usr/share/glib-2.0/schemas
216220 fi
217221
218222 ${ extraBuildCommands }
Original file line number Diff line number Diff line change 44, runCommandLocal
55, writeShellScript
66, glibc
7- , pkgsi686Linux
7+ , pkgsHostTarget
88, runCommandCC
99, coreutils
1010, bubblewrap
4242
4343 inherit ( lib . attrsets ) removeAttrs ;
4444
45+ # The splicing code does not handle `pkgsi686Linux` well, so we have to be
46+ # explicit about which package set it's coming from.
47+ inherit ( pkgsHostTarget ) pkgsi686Linux ;
48+
4549 name = args . name or "${ args . pname } -${ args . version } " ;
4650 executableName = args . pname or args . name ;
4751 # we don't know which have been supplied, and want to avoid defaulting missing attrs to null. Passed into runCommandLocal
You can’t perform that action at this time.
0 commit comments