Skip to content

Commit

Permalink
Merge pull request #205921 from ulrikstrid/ulrikstrid--kde-frameworks…
Browse files Browse the repository at this point in the history
…_5-101
  • Loading branch information
SuperSandro2000 authored Dec 14, 2022
2 parents 8648765 + 85ef2eb commit b09d189
Show file tree
Hide file tree
Showing 4 changed files with 341 additions and 335 deletions.
6 changes: 6 additions & 0 deletions pkgs/data/themes/material-kwin-decoration/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ mkDerivation rec {
sha256 = "sha256-n+yUmBUrkS+06qLnzl2P6CTQZZbDtJLy+2mDPCcQz9M=";
};

# Remove -Werror since it uses deprecated methods
postPatch = ''
substituteInPlace ./CMakeLists.txt \
--replace "add_definitions (-Wall -Werror)" "add_definitions (-Wall)"
'';

nativeBuildInputs = [ cmake extra-cmake-modules ];

buildInputs = [
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/kde-frameworks/fetch.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
WGET_ARGS=( https://download.kde.org/stable/frameworks/5.100/ -A '*.tar.xz' )
WGET_ARGS=( https://download.kde.org/stable/frameworks/5.101/ -A '*.tar.xz' )
4 changes: 2 additions & 2 deletions pkgs/development/libraries/kde-frameworks/kidletime.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
mkDerivation,
extra-cmake-modules,
qtbase, qtx11extras,
wayland, plasma-wayland-protocols
wayland, wayland-protocols, plasma-wayland-protocols
}:

mkDerivation {
pname = "kidletime";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtx11extras wayland plasma-wayland-protocols ];
buildInputs = [ qtx11extras wayland wayland-protocols plasma-wayland-protocols ];
propagatedBuildInputs = [ qtbase ];
}
Loading

0 comments on commit b09d189

Please sign in to comment.