sqlcipher: 3.4.0 -> 3.4.2

Semi-automatic update. These checks were performed:

- built on NixOS
- found 3.4.2 with grep in /nix/store/ad99ha1vvigs8zaw6mb4cwjb0an9gdlp-sqlcipher-3.4.2
- found 3.4.2 in filename of file in /nix/store/ad99ha1vvigs8zaw6mb4cwjb0an9gdlp-sqlcipher-3.4.2
This commit is contained in:
Ryan Mulligan 2018-02-27 16:45:32 -08:00
parent 6a10134205
commit d12c869681

View file

@ -4,13 +4,13 @@ assert readline != null -> ncurses != null;
stdenv.mkDerivation rec {
name = "sqlcipher-${version}";
version = "3.4.0";
version = "3.4.2";
src = fetchFromGitHub {
owner = "sqlcipher";
repo = "sqlcipher";
rev = "v${version}";
sha256 = "1lwc2m21sax3pnjfqddldbpbwr3b51s91fxz7dd7hf6ly8swnsvp";
sha256 = "168wb6fvyap7y8j86fb3xl5rd4wmhiq0dxvx9wxwi5kwm1j4vn1a";
};
buildInputs = [ readline ncurses openssl tcl ];