summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-09-21 09:48:13 +0200
committerGitHub <noreply@github.com>2022-09-21 09:48:13 +0200
commit5c00812848445f928480cc6575c9d3b183c1090b (patch)
tree1be15d0ad374d95c56699aac45402e7c23e964e0 /pkgs
parent58971caf41e2d4c31f61a15300d9796c786b766e (diff)
parente637769fc94262ca2cd8ea8615cd37bebfc63c52 (diff)
downloadnixpkgs-5c00812848445f928480cc6575c9d3b183c1090b.tar
nixpkgs-5c00812848445f928480cc6575c9d3b183c1090b.tar.gz
nixpkgs-5c00812848445f928480cc6575c9d3b183c1090b.tar.bz2
nixpkgs-5c00812848445f928480cc6575c9d3b183c1090b.tar.lz
nixpkgs-5c00812848445f928480cc6575c9d3b183c1090b.tar.xz
nixpkgs-5c00812848445f928480cc6575c9d3b183c1090b.tar.zst
nixpkgs-5c00812848445f928480cc6575c9d3b183c1090b.zip
Merge pull request #192112 from romildo/upd.kvantum
libsForQt5.qtstyleplugin-kvantum: 1.0.4 -> 1.0.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/qtstyleplugin-kvantum/default.nix30
1 files changed, 24 insertions, 6 deletions
diff --git a/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix b/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
index b80e93622d9..94fe4878f06 100644
--- a/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
+++ b/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
@@ -1,25 +1,43 @@
-{ lib, stdenv, fetchFromGitHub, fetchpatch, qmake, qtbase, qtsvg, qtx11extras, kwindowsystem
-, libX11, libXext, qttools, wrapQtAppsHook
+{ lib
+, stdenv
+, fetchFromGitHub
+, fetchpatch
+, qmake
+, qtbase
+, qtsvg
+, qtx11extras
+, kwindowsystem
+, libX11
+, libXext
+, qttools
+, wrapQtAppsHook
 , gitUpdater
 }:
 
 stdenv.mkDerivation rec {
   pname = "qtstyleplugin-kvantum";
-  version = "1.0.4";
+  version = "1.0.5";
 
   src = fetchFromGitHub {
     owner = "tsujan";
     repo = "Kvantum";
     rev = "V${version}";
-    sha256 = "chdtcx73mfr/b1P3yVevx0m7HkMFzEYG7YLuhSyG7rk=";
+    sha256 = "DJRTOpmmiB3VivZt66qaQwz7tp+sEMP+3E0dwUAkvXU=";
   };
 
   nativeBuildInputs = [
-    qmake qttools wrapQtAppsHook
+    qmake
+    qttools
+    wrapQtAppsHook
   ];
 
   buildInputs = [
-    qtbase qtsvg qtx11extras kwindowsystem libX11 libXext
+    qtbase
+    qtsvg
+    qtx11extras
+    kwindowsystem
+    libX11
+    libXext
   ];
 
   sourceRoot = "source/Kvantum";