about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-09-22 17:22:17 +0200
committerGitHub <noreply@github.com>2023-09-22 17:22:17 +0200
commit1133b4d6321f0f86b0f9a6724f0a4010806d14cc (patch)
treeb6775150dfc19a55c23050d9403e15cdba80926e /pkgs
parent4e28a23b522f7567e3ba9563027e95df9876caa1 (diff)
parent8160250ace8e89c6f2d95eade9cd4b0978efde01 (diff)
downloadnixlib-1133b4d6321f0f86b0f9a6724f0a4010806d14cc.tar
nixlib-1133b4d6321f0f86b0f9a6724f0a4010806d14cc.tar.gz
nixlib-1133b4d6321f0f86b0f9a6724f0a4010806d14cc.tar.bz2
nixlib-1133b4d6321f0f86b0f9a6724f0a4010806d14cc.tar.lz
nixlib-1133b4d6321f0f86b0f9a6724f0a4010806d14cc.tar.xz
nixlib-1133b4d6321f0f86b0f9a6724f0a4010806d14cc.tar.zst
nixlib-1133b4d6321f0f86b0f9a6724f0a4010806d14cc.zip
Merge pull request #254128 from r-ryantm/auto-update/valentina
valentina: 0.7.51 -> 0.7.52
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/valentina/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/misc/valentina/default.nix b/pkgs/applications/misc/valentina/default.nix
index c00159c0c64d..09b3eabf1845 100644
--- a/pkgs/applications/misc/valentina/default.nix
+++ b/pkgs/applications/misc/valentina/default.nix
@@ -2,17 +2,18 @@
 , qmake, qttools
 , qtsvg, qtxmlpatterns
 , wrapQtAppsHook
+, autoPatchelfHook
 }:
 
 stdenv.mkDerivation rec {
   pname = "valentina";
-  version = "0.7.51";
+  version = "0.7.52";
 
   src = fetchFromGitLab {
     owner = "smart-pattern";
     repo = "valentina";
     rev = "v${version}";
-    hash = "sha256-N9fC2tCP4TVNncatHaz5W5Mp3jOmAcEWYCl30+0myaE=";
+    hash = "sha256-DmNRBxqyBvDTdA7Sz9X04Dhejtxx7tOVpST+SkUNguM=";
   };
 
   postPatch = ''
@@ -20,7 +21,7 @@ stdenv.mkDerivation rec {
       --replace '$$[QT_INSTALL_BINS]/$$LRELEASE' '${lib.getDev qttools}/bin/lrelease'
   '';
 
-  nativeBuildInputs = [ qmake qttools wrapQtAppsHook installShellFiles ];
+  nativeBuildInputs = [ qmake qttools wrapQtAppsHook installShellFiles autoPatchelfHook ];
 
   buildInputs = [ qtsvg qtxmlpatterns ];