summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlcipher
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-01-01 21:09:45 -0800
committerR. RyanTM <ryantm-bot@ryantm.com>2019-01-01 21:09:45 -0800
commit94c83eea02639a40c786849a1bbcdf28a9875d71 (patch)
treedf9be0a8b754aec9e72a7ed9234bff0b99d38037 /pkgs/development/libraries/sqlcipher
parent42575040fc64c1f5560c1cd1d1fdf0fd5e5d4b49 (diff)
downloadnixpkgs-94c83eea02639a40c786849a1bbcdf28a9875d71.tar
nixpkgs-94c83eea02639a40c786849a1bbcdf28a9875d71.tar.gz
nixpkgs-94c83eea02639a40c786849a1bbcdf28a9875d71.tar.bz2
nixpkgs-94c83eea02639a40c786849a1bbcdf28a9875d71.tar.lz
nixpkgs-94c83eea02639a40c786849a1bbcdf28a9875d71.tar.xz
nixpkgs-94c83eea02639a40c786849a1bbcdf28a9875d71.tar.zst
nixpkgs-94c83eea02639a40c786849a1bbcdf28a9875d71.zip
sqlcipher: 4.0.0 -> 4.0.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sqlcipher/versions
Diffstat (limited to 'pkgs/development/libraries/sqlcipher')
-rw-r--r--pkgs/development/libraries/sqlcipher/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/sqlcipher/default.nix b/pkgs/development/libraries/sqlcipher/default.nix
index 0d31b294e1c..46c006df935 100644
--- a/pkgs/development/libraries/sqlcipher/default.nix
+++ b/pkgs/development/libraries/sqlcipher/default.nix
@@ -4,13 +4,13 @@ assert readline != null -> ncurses != null;
 
 stdenv.mkDerivation rec {
   name = "sqlcipher-${version}";
-  version = "4.0.0";
+  version = "4.0.1";
 
   src = fetchFromGitHub {
     owner = "sqlcipher";
     repo = "sqlcipher";
     rev = "v${version}";
-    sha256 = "0faadjr4qnm1pvm5yx37jfqqxqwii02nzlmmi2h91z6371888m7g";
+    sha256 = "08iqj80qlcsnid2s3m6gcryhvcfc0f136frv0md2gp3rz9g3l63d";
   };
 
   buildInputs = [ readline ncurses openssl tcl ];