summary refs log tree commit diff
path: root/pkgs/development/libraries/qtkeychain
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-08-08 15:32:55 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-09 00:32:55 +0200
commit98881b1e9290f799cbf2c72e73cfadc36ba1e1b0 (patch)
tree97b17495417004e6b58ece02035edc337405c592 /pkgs/development/libraries/qtkeychain
parent1d46027c3d1444644039287c18d8abdcae26e982 (diff)
downloadnixpkgs-98881b1e9290f799cbf2c72e73cfadc36ba1e1b0.tar
nixpkgs-98881b1e9290f799cbf2c72e73cfadc36ba1e1b0.tar.gz
nixpkgs-98881b1e9290f799cbf2c72e73cfadc36ba1e1b0.tar.bz2
nixpkgs-98881b1e9290f799cbf2c72e73cfadc36ba1e1b0.tar.lz
nixpkgs-98881b1e9290f799cbf2c72e73cfadc36ba1e1b0.tar.xz
nixpkgs-98881b1e9290f799cbf2c72e73cfadc36ba1e1b0.tar.zst
nixpkgs-98881b1e9290f799cbf2c72e73cfadc36ba1e1b0.zip
libsForQt5.qtkeychain: 0.8.0 -> 0.9.0 (#44703)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qtkeychain-qt5/versions.
Diffstat (limited to 'pkgs/development/libraries/qtkeychain')
-rw-r--r--pkgs/development/libraries/qtkeychain/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/qtkeychain/default.nix b/pkgs/development/libraries/qtkeychain/default.nix
index 5baeb76820a..15be8490c1e 100644
--- a/pkgs/development/libraries/qtkeychain/default.nix
+++ b/pkgs/development/libraries/qtkeychain/default.nix
@@ -9,13 +9,13 @@ assert stdenv.isDarwin -> darwin != null;
 
 stdenv.mkDerivation rec {
   name = "qtkeychain-${if withQt5 then "qt5" else "qt4"}-${version}";
-  version = "0.8.0";            # verify after nix-build with `grep -R "set(PACKAGE_VERSION " result/`
+  version = "0.9.0";            # verify after nix-build with `grep -R "set(PACKAGE_VERSION " result/`
 
   src = fetchFromGitHub {
     owner = "frankosterfeld";
     repo = "qtkeychain";
     rev = "v${version}";
-    sha256 = "1r6qp9l2lp5jpc6ciklbg1swvvzcpc37rg9py46hk0wxy6klnm0b"; # v0.8.0
+    sha256 = "1vff0jrycq6c204ch0w7fix5bsv90aw8pl9yiicx9r5ady0i29m7"; # v0.9.0
   };
 
   cmakeFlags = [ "-DQT_TRANSLATIONS_DIR=share/qt/translations" ]