about summary refs log tree commit diff
path: root/pkgs/tools/graphics/qrcode
diff options
context:
space:
mode:
authorannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2023-12-02 02:35:41 +0000
committerannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2023-12-02 09:55:49 +0000
commita406725e5925e4eb4853f4f877de35e199b0d371 (patch)
treeee06b49cc558f90508aeca5fc52b97b68dae46b1 /pkgs/tools/graphics/qrcode
parentaf8e4dc782c32fc05e863ea52e050c693bee0f12 (diff)
qrcode: update latest rev to fix compiler errors
handle truncated files and give proper prototypes.
Diffstat (limited to 'pkgs/tools/graphics/qrcode')
-rw-r--r--pkgs/tools/graphics/qrcode/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/tools/graphics/qrcode/default.nix b/pkgs/tools/graphics/qrcode/default.nix
index ce623e25db0e2..e870f53da82e8 100644
--- a/pkgs/tools/graphics/qrcode/default.nix
+++ b/pkgs/tools/graphics/qrcode/default.nix
@@ -2,17 +2,15 @@
 
 stdenv.mkDerivation {
   pname = "qrcode";
-  version = "unstable-2022-01-10";
+  version = "unstable-2023-12-02";
 
   src = fetchFromGitHub {
     owner = "qsantos";
     repo = "qrcode";
-    rev = "f4475866bbf963ad118db936060f606eedc224d5";
-    hash = "sha256-IbWYSAc0PvSWcxKaPUXDldGDCK/lPZjptepYtLppPmA=";
+    rev = "96fac69ad3e4f616ce75c0e3ef4ed0574cfab315";
+    hash = "sha256-Aesjys6FchB6qcLRWJNGfcEZRlO3stw3+IM8Xe2pF+Q=";
   };
 
-  env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
-
   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
 
   installPhase = ''