about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2024-06-16 12:13:49 +0200
committerThomas Gerbet <thomas@gerbet.me>2024-06-16 12:20:22 +0200
commit0f4a14b21098b75e32c4f7419745d021ded5da72 (patch)
treec458885b1feefaa3106520004c858dc10df62486
parent3563ebc663d7b75c7781085229ee13c17ea93d12 (diff)
iniparser: 4.2.3 -> 4.2.4
Changes:
https://gitlab.com/iniparser/iniparser/-/releases/v4.2.4
-rw-r--r--pkgs/development/libraries/iniparser/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/development/libraries/iniparser/default.nix b/pkgs/development/libraries/iniparser/default.nix
index 18057753efbd0..f9fa478ded0c2 100644
--- a/pkgs/development/libraries/iniparser/default.nix
+++ b/pkgs/development/libraries/iniparser/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchFromGitLab
-, fetchpatch
 , fetchFromGitHub
 , substituteAll
 , symlinkJoin
@@ -14,22 +13,16 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "iniparser";
-  version = "4.2.3";
+  version = "4.2.4";
 
   src = fetchFromGitLab {
     owner = "iniparser";
     repo = "iniparser";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-rCp9whYPYmVd7saVFILmpdn041u6fYGqe1/Oqc7RaeA=";
+    hash = "sha256-R069LuOmjCFj7dHXiMjuK7WUupk5+dVd8IDKY/wBn2o=";
   };
 
-  patches = [
-    (fetchpatch {
-      name = "fix-paths-pkgconfig-file.patch";
-      url = "https://gitlab.com/iniparser/iniparser/-/commit/6a76cd5e97b32014b22d87039bf6f4ee425c79a2.patch";
-      hash = "sha256-KlTxeOzwBZiLNmuwbbem5c/xspxsflyYfeUaQnGyarI=";
-    })
-  ] ++ lib.optionals finalAttrs.doCheck [
+  patches = lib.optionals finalAttrs.doCheck [
     (substituteAll {
       # Do not let cmake's fetchContent download unity
       src = ./remove-fetchcontent-usage.patch;