Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5b55013aa274
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: edb5c34f39c0
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 20, 2019

  1. gtk3: Enable separated debug info on Linux

    When debugging gtk3 errors or errors in applications that use gtk, it
    can be useful to have full debuginfo. This adds debug information in a
    separate output so it will not bloat normal systems.
    artemist committed Oct 20, 2019
    Copy the full SHA
    0a8ac3b View commit details

Commits on Oct 21, 2019

  1. Merge pull request #71426 from artemist/gtk-debuginfo

    gtk3: Enable separated debug info on Linux
    7c6f434c authored Oct 21, 2019
    Copy the full SHA
    edb5c34 View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 pkgs/development/libraries/gtk/3.x.nix
2 changes: 2 additions & 0 deletions pkgs/development/libraries/gtk/3.x.nix
Original file line number Diff line number Diff line change
@@ -75,6 +75,8 @@ stdenv.mkDerivation rec {
./patches/3.0-darwin-x11.patch
];

separateDebugInfo = stdenv.isLinux;

mesonFlags = [
"-Dtests=false"
];