mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
Merge pull request #200337 from Artturin/crossfixes4
gobject-introspection: use wrapper.nix for the native package too
This commit is contained in:
commit
17fbc9a3c9
@ -4,7 +4,6 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "i3ipc-glib";
|
pname = "i3ipc-glib";
|
||||||
version = "1.0.1";
|
version = "1.0.1";
|
||||||
|
|
||||||
@ -15,10 +14,10 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "01fzvrbnzcwx0vxw29igfpza9zwzp2s7msmzb92v01z0rz0y5m0p";
|
sha256 = "01fzvrbnzcwx0vxw29igfpza9zwzp2s7msmzb92v01z0rz0y5m0p";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook which pkg-config ];
|
strictDeps = true;
|
||||||
|
nativeBuildInputs = [ autoreconfHook which pkg-config gtk-doc gobject-introspection ];
|
||||||
buildInputs = [ libxcb json-glib gtk-doc xorgproto gobject-introspection ];
|
|
||||||
|
|
||||||
|
buildInputs = [ libxcb json-glib xorgproto ];
|
||||||
|
|
||||||
preAutoreconf = ''
|
preAutoreconf = ''
|
||||||
gtkdocize
|
gtkdocize
|
||||||
|
@ -138,14 +138,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
rm $out/lib/libregress-1.0${stdenv.targetPlatform.extensions.sharedLibrary}
|
rm $out/lib/libregress-1.0${stdenv.targetPlatform.extensions.sharedLibrary}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# add self to buildInputs to avoid needing to add gobject-introspection to buildInputs in addition to nativeBuildInputs
|
|
||||||
# builds use target-pkg-config to look for gobject-introspection instead of just looking for binaries in $PATH
|
|
||||||
# wrapper uses depsTargetTargetPropagated so ignore it
|
|
||||||
preFixup = lib.optionalString (!lib.hasSuffix "-wrapped" finalAttrs.pname) ''
|
|
||||||
mkdir -p $dev/nix-support
|
|
||||||
echo "$out" > $dev/nix-support/propagated-target-target-deps
|
|
||||||
'';
|
|
||||||
|
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
@ -9,50 +9,96 @@
|
|||||||
# to build, run
|
# to build, run
|
||||||
# `nix build ".#pkgsCross.aarch64-multiplatform.buildPackages.gobject-introspection"`
|
# `nix build ".#pkgsCross.aarch64-multiplatform.buildPackages.gobject-introspection"`
|
||||||
|
|
||||||
|
# a comment for both depsTargetTargetPropagated's
|
||||||
|
# add self to buildInputs to avoid needing to add gobject-introspection to buildInputs in addition to nativeBuildInputs
|
||||||
|
# builds use target-pkg-config to look for gobject-introspection instead of just looking for binaries in $PATH
|
||||||
|
|
||||||
let
|
let
|
||||||
# ensure that `.override` works when gobject-introspection == gobject-introspection-wrapped
|
# ensure that `.override` works
|
||||||
args = builtins.removeAttrs _args [ "buildPackages" "targetPackages" "gobject-introspection-unwrapped" ];
|
args = builtins.removeAttrs _args [ "buildPackages" "targetPackages" "gobject-introspection-unwrapped" ];
|
||||||
# passing this stdenv to `targetPackages...` breaks due to splicing not working in `.override``
|
# passing this stdenv to `targetPackages...` breaks due to splicing not working in `.override``
|
||||||
argsForTarget = builtins.removeAttrs args [ "stdenv" ];
|
argsForTarget = builtins.removeAttrs args [ "stdenv" ];
|
||||||
|
|
||||||
|
overridenUnwrappedGir = gobject-introspection-unwrapped.override args;
|
||||||
|
# if we have targetPackages.gobject-introspection then propagate that
|
||||||
|
overridenTargetUnwrappedGir =
|
||||||
|
if targetPackages ? gobject-introspection-unwrapped
|
||||||
|
then targetPackages.gobject-introspection-unwrapped.override argsForTarget
|
||||||
|
else overridenUnwrappedGir;
|
||||||
in
|
in
|
||||||
|
|
||||||
(gobject-introspection-unwrapped.override args).overrideAttrs (previousAttrs: {
|
# wrap both pkgsCrossX.buildPackages.gobject-introspection and {pkgs,pkgsSomethingExecutableOnBuildSystem).buildPackages.gobject-introspection
|
||||||
pname = "gobject-introspection-wrapped";
|
if (!stdenv.hostPlatform.canExecute stdenv.targetPlatform) && stdenv.targetPlatform.emulatorAvailable buildPackages
|
||||||
depsTargetTargetPropagated = [ gobject-introspection-unwrapped ];
|
then
|
||||||
postFixup = (previousAttrs.postFixup or "") + ''
|
stdenv.mkDerivation
|
||||||
mv $dev/bin/g-ir-compiler $dev/bin/.g-ir-compiler-wrapped
|
(builtins.removeAttrs overridenUnwrappedGir.drvAttrs [ "name" ] # so we can get a fresh name generated from the pname
|
||||||
mv $dev/bin/g-ir-scanner $dev/bin/.g-ir-scanner-wrapped
|
// {
|
||||||
|
pname = "gobject-introspection-wrapped";
|
||||||
|
passthru = overridenUnwrappedGir.passthru // {
|
||||||
|
unwrapped = overridenUnwrappedGir;
|
||||||
|
};
|
||||||
|
phases = [ "fixupPhase" ]; # don't remove, it is valid to set phases here.
|
||||||
|
dontStrip = true;
|
||||||
|
depsTargetTargetPropagated = [ overridenTargetUnwrappedGir ];
|
||||||
|
postFixup = ''
|
||||||
|
${lib.concatMapStrings (output: ''
|
||||||
|
mkdir -p ${"$" + "${output}"}
|
||||||
|
${lib.getExe buildPackages.xorg.lndir} ${gobject-introspection-unwrapped.${output}} ${"$" + "${output}"}
|
||||||
|
'') gobject-introspection-unwrapped.outputs}
|
||||||
|
|
||||||
(
|
cp $dev/bin/g-ir-compiler $dev/bin/.g-ir-compiler-wrapped
|
||||||
export bash="${buildPackages.bash}"
|
cp $dev/bin/g-ir-scanner $dev/bin/.g-ir-scanner-wrapped
|
||||||
export emulator=${lib.escapeShellArg (stdenv.targetPlatform.emulator buildPackages)}
|
|
||||||
export emulatorwrapper="$dev/bin/g-ir-scanner-qemuwrapper"
|
|
||||||
export buildlddtree="${buildPackages.pax-utils}/bin/lddtree"
|
|
||||||
|
|
||||||
export targetgir="${lib.getDev (targetPackages.gobject-introspection-unwrapped.override argsForTarget)}"
|
(
|
||||||
|
rm "$dev/bin/g-ir-compiler"
|
||||||
|
rm "$dev/bin/g-ir-scanner"
|
||||||
|
export bash="${buildPackages.bash}"
|
||||||
|
export emulator=${lib.escapeShellArg (stdenv.targetPlatform.emulator buildPackages)}
|
||||||
|
export emulatorwrapper="$dev/bin/g-ir-scanner-qemuwrapper"
|
||||||
|
export buildlddtree="${buildPackages.pax-utils}/bin/lddtree"
|
||||||
|
|
||||||
substituteAll "${./wrappers/g-ir-compiler.sh}" "$dev/bin/g-ir-compiler"
|
export targetgir="${lib.getDev overridenTargetUnwrappedGir}"
|
||||||
substituteAll "${./wrappers/g-ir-scanner.sh}" "$dev/bin/g-ir-scanner"
|
|
||||||
substituteAll "${./wrappers/g-ir-scanner-lddwrapper.sh}" "$dev/bin/g-ir-scanner-lddwrapper"
|
|
||||||
substituteAll "${./wrappers/g-ir-scanner-qemuwrapper.sh}" "$dev/bin/g-ir-scanner-qemuwrapper"
|
|
||||||
chmod +x $dev/bin/g-ir-*
|
|
||||||
)
|
|
||||||
''
|
|
||||||
# when cross-compiling and using the wrapper then when a package looks up the g_ir_X
|
|
||||||
# variable with pkg-config they'll get the host version which can't be run
|
|
||||||
# override the variable to use the absolute path to g_ir_X in PATH which can be run
|
|
||||||
+ ''
|
|
||||||
cat >> $dev/nix-support/setup-hook <<-'EOF'
|
|
||||||
override-pkg-config-gir-variables() {
|
|
||||||
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_SCANNER="$(type -p g-ir-scanner)"
|
|
||||||
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_COMPILER="$(type -p g-ir-compiler)"
|
|
||||||
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_GENERATE="$(type -p g-ir-generate)"
|
|
||||||
export PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_SCANNER
|
|
||||||
export PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_COMPILER
|
|
||||||
export PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_GENERATE
|
|
||||||
}
|
|
||||||
|
|
||||||
preConfigureHooks+=(override-pkg-config-gir-variables)
|
substituteAll "${./wrappers/g-ir-compiler.sh}" "$dev/bin/g-ir-compiler"
|
||||||
EOF
|
substituteAll "${./wrappers/g-ir-scanner.sh}" "$dev/bin/g-ir-scanner"
|
||||||
'';
|
substituteAll "${./wrappers/g-ir-scanner-lddwrapper.sh}" "$dev/bin/g-ir-scanner-lddwrapper"
|
||||||
})
|
substituteAll "${./wrappers/g-ir-scanner-qemuwrapper.sh}" "$dev/bin/g-ir-scanner-qemuwrapper"
|
||||||
|
chmod +x $dev/bin/g-ir-compiler
|
||||||
|
chmod +x $dev/bin/g-ir-scanner*
|
||||||
|
)
|
||||||
|
''
|
||||||
|
# when cross-compiling and using the wrapper then when a package looks up the g_ir_X
|
||||||
|
# variable with pkg-config they'll get the host version which can't be run
|
||||||
|
# override the variable to use the absolute path to g_ir_X in PATH which can be run
|
||||||
|
+ ''
|
||||||
|
cat >> $dev/nix-support/setup-hook <<-'EOF'
|
||||||
|
override-pkg-config-gir-variables() {
|
||||||
|
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_SCANNER="$(type -p g-ir-scanner)"
|
||||||
|
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_COMPILER="$(type -p g-ir-compiler)"
|
||||||
|
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_GENERATE="$(type -p g-ir-generate)"
|
||||||
|
export PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_SCANNER
|
||||||
|
export PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_COMPILER
|
||||||
|
export PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_G_IR_GENERATE
|
||||||
|
}
|
||||||
|
|
||||||
|
preConfigureHooks+=(override-pkg-config-gir-variables)
|
||||||
|
EOF
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
else
|
||||||
|
stdenv.mkDerivation (builtins.removeAttrs overridenUnwrappedGir.drvAttrs [ "name" ] # so we can get a fresh name generated from the pname
|
||||||
|
// {
|
||||||
|
pname = "gobject-introspection-wrapped";
|
||||||
|
passthru = overridenUnwrappedGir.passthru // {
|
||||||
|
unwrapped = overridenUnwrappedGir;
|
||||||
|
};
|
||||||
|
phases = [ "fixupPhase" ]; # don't remove, it is valid to set phases here.
|
||||||
|
dontStrip = true;
|
||||||
|
depsTargetTargetPropagated = [ overridenTargetUnwrappedGir ];
|
||||||
|
postFixup = ''
|
||||||
|
${lib.concatMapStrings (output: ''
|
||||||
|
mkdir -p ${"$" + "${output}"}
|
||||||
|
${lib.getExe buildPackages.xorg.lndir} ${gobject-introspection-unwrapped.${output}} ${"$" + "${output}"}
|
||||||
|
'') gobject-introspection-unwrapped.outputs}
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
@ -70,6 +70,13 @@ stdenv.mkDerivation rec {
|
|||||||
dbus
|
dbus
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# https://gitlab.gnome.org/GNOME/gtksourceview/-/merge_requests/295
|
||||||
|
# build: drop unnecessary vapigen check
|
||||||
|
substituteInPlace meson.build \
|
||||||
|
--replace "if generate_vapi" "if false"
|
||||||
|
'';
|
||||||
|
|
||||||
# Broken by PCRE 2 bump in GLib.
|
# Broken by PCRE 2 bump in GLib.
|
||||||
# https://gitlab.gnome.org/GNOME/gtksourceview/-/issues/283
|
# https://gitlab.gnome.org/GNOME/gtksourceview/-/issues/283
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -74,6 +74,13 @@ stdenv.mkDerivation rec {
|
|||||||
"-Dgtk_doc=true"
|
"-Dgtk_doc=true"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# https://gitlab.gnome.org/GNOME/gtksourceview/-/merge_requests/295
|
||||||
|
# build: drop unnecessary vapigen check
|
||||||
|
substituteInPlace meson.build \
|
||||||
|
--replace "if generate_vapi" "if false"
|
||||||
|
'';
|
||||||
|
|
||||||
doCheck = stdenv.isLinux;
|
doCheck = stdenv.isLinux;
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
@ -13,14 +13,25 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "196ibn86j54fywfwwgyh89i9wygm4vh7ls19fn20vrnm6ijlzh9r";
|
sha256 = "196ibn86j54fywfwwgyh89i9wygm4vh7ls19fn20vrnm6ijlzh9r";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
|
strictDeps = true;
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoconf
|
||||||
|
automake
|
||||||
|
libtool
|
||||||
|
pkg-config
|
||||||
|
gnome.gnome-common
|
||||||
|
gtk-doc
|
||||||
|
gobject-introspection
|
||||||
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gnome.gnome-common gtk-doc gtk3
|
gtk3 libX11 libXext libXrender
|
||||||
libX11 libXext libXrender gobject-introspection
|
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
./autogen.sh --prefix="$out"
|
# NOCONFIGURE fixes 'If you meant to cross compile, use `--host'.'
|
||||||
|
NOCONFIGURE=1 ./autogen.sh --prefix="$out"
|
||||||
|
substituteInPlace ./configure \
|
||||||
|
--replace "dummy pkg-config" 'dummy ''${ac_tool_prefix}pkg-config'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
, fetchurl
|
, fetchurl
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, meson
|
, meson
|
||||||
|
, mesonEmulatorHook
|
||||||
, ninja
|
, ninja
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, gtk-doc
|
, gtk-doc
|
||||||
@ -50,6 +51,8 @@ stdenv.mkDerivation rec {
|
|||||||
gtk-doc
|
gtk-doc
|
||||||
docbook_xsl
|
docbook_xsl
|
||||||
docbook_xml_dtd_412
|
docbook_xml_dtd_412
|
||||||
|
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
||||||
|
mesonEmulatorHook
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -19199,8 +19199,7 @@ with pkgs;
|
|||||||
gns3-gui = gns3Packages.guiStable;
|
gns3-gui = gns3Packages.guiStable;
|
||||||
gns3-server = gns3Packages.serverStable;
|
gns3-server = gns3Packages.serverStable;
|
||||||
|
|
||||||
gobject-introspection = if (!stdenv.hostPlatform.canExecute stdenv.targetPlatform) && stdenv.targetPlatform.emulatorAvailable buildPackages
|
gobject-introspection = callPackage ../development/libraries/gobject-introspection/wrapper.nix { };
|
||||||
then callPackage ../development/libraries/gobject-introspection/wrapper.nix { } else gobject-introspection-unwrapped;
|
|
||||||
|
|
||||||
gobject-introspection-unwrapped = callPackage ../development/libraries/gobject-introspection {
|
gobject-introspection-unwrapped = callPackage ../development/libraries/gobject-introspection {
|
||||||
nixStoreDir = config.nix.storeDir or builtins.storeDir;
|
nixStoreDir = config.nix.storeDir or builtins.storeDir;
|
||||||
|
Loading…
Reference in New Issue
Block a user