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: 6fc356243235
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0d83d01dfeec
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 2, 2020

  1. glibmm: Add glib to nativeBuildInputs

    While compiling, glibmm tries to execute glib-compile-schemas, which
    requires glib to be in the nativeBuildInputs for cross-platform builds.
    kampka committed Sep 2, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    kampka Christian Kampka
    Copy the full SHA
    7332051 View commit details
  2. Merge pull request #96911 from kampka/glibmm

    glibmm: Add glib to nativeBuildInputs
    jtojnar authored Sep 2, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0d83d01 View commit details
Showing with 6 additions and 1 deletion.
  1. +6 −1 pkgs/development/libraries/glibmm/default.nix
7 changes: 6 additions & 1 deletion pkgs/development/libraries/glibmm/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,12 @@ stdenv.mkDerivation rec {

outputs = [ "out" "dev" ];

nativeBuildInputs = [ pkgconfig gnum4 ];
nativeBuildInputs = [
pkgconfig
gnum4
glib # for glib-compile-schemas
];

buildInputs = stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Cocoa
]);