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

Commits on Jan 3, 2021

  1. kirigami2: Add qtgraphicaleffects to buildInputs

    Many of Kirigami's components require qtgraphicaleffects, so it doesn't
    make sense to rely on the packages using kirigami supplying
    the dependency.
    Thra11 committed Jan 3, 2021
    Copy the full SHA
    6ae1689 View commit details
  2. Merge pull request #108331 from Thra11/kirigami-qtgraphicaleffects

    kirigami2: Add qtgraphicaleffects to buildInputs
    ttuegel authored Jan 3, 2021
    Copy the full SHA
    c40e1d8 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/kde-frameworks/kirigami2.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/kde-frameworks/kirigami2.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ mkDerivation, extra-cmake-modules, qtbase, qtquickcontrols2, qttranslations }:
{ mkDerivation, extra-cmake-modules, qtbase, qtquickcontrols2, qttranslations, qtgraphicaleffects }:

mkDerivation {
name = "kirigami2";
meta = {
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase qtquickcontrols2 qttranslations ];
buildInputs = [ qtbase qtquickcontrols2 qttranslations qtgraphicaleffects ];
outputs = [ "out" "dev" ];
}