summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-11-21 19:50:48 +0200
committerArtturin <Artturin@artturin.com>2022-11-21 19:51:50 +0200
commit3fda065c6a11665ed9ff27984a565dcd4219c12a (patch)
tree4cfcdd29459ac100da9c4fb7be7c96651762d044
parentdebe1b93c9ec3651fbb57060468b9f78873468c8 (diff)
gobject-introspection: inherit meta in the wrapper
meta isn't in drvAttrs because its a "passthru" attribute
-rw-r--r--pkgs/development/libraries/gobject-introspection/wrapper.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gobject-introspection/wrapper.nix b/pkgs/development/libraries/gobject-introspection/wrapper.nix
index 518dda781a642..d59cbe6faffa4 100644
--- a/pkgs/development/libraries/gobject-introspection/wrapper.nix
+++ b/pkgs/development/libraries/gobject-introspection/wrapper.nix
@@ -33,6 +33,8 @@ then
   stdenv.mkDerivation
     (builtins.removeAttrs overridenUnwrappedGir.drvAttrs [ "name" ] # so we can get a fresh name generated from the pname
       // {
+
+      inherit (overridenUnwrappedGir) meta;
       pname = "gobject-introspection-wrapped";
       passthru = overridenUnwrappedGir.passthru // {
         unwrapped = overridenUnwrappedGir;
@@ -88,6 +90,7 @@ then
 else
   stdenv.mkDerivation (builtins.removeAttrs overridenUnwrappedGir.drvAttrs [ "name" ] # so we can get a fresh name generated from the pname
     // {
+    inherit (overridenUnwrappedGir) meta;
     pname = "gobject-introspection-wrapped";
     passthru = overridenUnwrappedGir.passthru // {
       unwrapped = overridenUnwrappedGir;