summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlcipher/default.nix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-12-13 23:43:47 -0800
committerR. RyanTM <ryantm-bot@ryantm.com>2018-12-13 23:43:47 -0800
commit3daf7727289c1cf287f4315985df547076850394 (patch)
tree5ce658bc086c776e94cb904154d079fe185bc2a4 /pkgs/development/libraries/sqlcipher/default.nix
parente0950ae9ad7e101c16ce8bbc28d566c75bb298fb (diff)
downloadnixpkgs-3daf7727289c1cf287f4315985df547076850394.tar
nixpkgs-3daf7727289c1cf287f4315985df547076850394.tar.gz
nixpkgs-3daf7727289c1cf287f4315985df547076850394.tar.bz2
nixpkgs-3daf7727289c1cf287f4315985df547076850394.tar.lz
nixpkgs-3daf7727289c1cf287f4315985df547076850394.tar.xz
nixpkgs-3daf7727289c1cf287f4315985df547076850394.tar.zst
nixpkgs-3daf7727289c1cf287f4315985df547076850394.zip
sqlcipher: 3.4.2 -> 4.0.0
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/default.nix')
-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 fbf7d8df53e..0d31b294e1c 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 = "3.4.2";
+  version = "4.0.0";
 
   src = fetchFromGitHub {
     owner = "sqlcipher";
     repo = "sqlcipher";
     rev = "v${version}";
-    sha256 = "168wb6fvyap7y8j86fb3xl5rd4wmhiq0dxvx9wxwi5kwm1j4vn1a";
+    sha256 = "0faadjr4qnm1pvm5yx37jfqqxqwii02nzlmmi2h91z6371888m7g";
   };
 
   buildInputs = [ readline ncurses openssl tcl ];