about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-12-16 19:42:23 +0000
committerGitHub <noreply@github.com>2018-12-16 19:42:23 +0000
commitbc1a94bc86d73cbe50159c98ef279f47f6c83b8d (patch)
treea4c4222b09235dff63bc3e7fa95cccac9b54ab22 /pkgs/development
parent712c720985f506cecaf23ce75fc0590a917373b8 (diff)
parent3daf7727289c1cf287f4315985df547076850394 (diff)
downloadnixlib-bc1a94bc86d73cbe50159c98ef279f47f6c83b8d.tar
nixlib-bc1a94bc86d73cbe50159c98ef279f47f6c83b8d.tar.gz
nixlib-bc1a94bc86d73cbe50159c98ef279f47f6c83b8d.tar.bz2
nixlib-bc1a94bc86d73cbe50159c98ef279f47f6c83b8d.tar.lz
nixlib-bc1a94bc86d73cbe50159c98ef279f47f6c83b8d.tar.xz
nixlib-bc1a94bc86d73cbe50159c98ef279f47f6c83b8d.tar.zst
nixlib-bc1a94bc86d73cbe50159c98ef279f47f6c83b8d.zip
Merge pull request #51998 from r-ryantm/auto-update/sqlcipher
sqlcipher: 3.4.2 -> 4.0.0
Diffstat (limited to 'pkgs/development')
-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 fbf7d8df53e3..0d31b294e1c4 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 ];