diff options
author | Luke Granger-Brown <git@lukegb.com> | 2021-04-24 11:35:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 11:35:40 +0100 |
commit | 080acfcc44f58ec8f50a64be8df204f1349fcc0b (patch) | |
tree | 7f65079fa56433151b5d3231da5bddec4bf0caed /pkgs/development | |
parent | 1341bcf1f8e2f5fbf685594789e6984203d2df79 (diff) | |
parent | a20706a61ef3101a9c852fcf8c10c004582e8d9f (diff) |
Merge pull request #115568 from r-ryantm/auto-update/sqlcipher
sqlcipher: 4.4.2 -> 4.4.3
Diffstat (limited to 'pkgs/development')
-rw-r--r-- | pkgs/development/libraries/sqlcipher/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/sqlcipher/default.nix b/pkgs/development/libraries/sqlcipher/default.nix index 9097d5abe54f0..44da759409eef 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 { pname = "sqlcipher"; - version = "4.4.2"; + version = "4.4.3"; src = fetchFromGitHub { owner = "sqlcipher"; repo = "sqlcipher"; rev = "v${version}"; - sha256 = "0zhww6fpnfflnzp6091npz38ab6cpq75v3ghqvcj5kqg09vqm5na"; + sha256 = "sha256-E23PTNnVZbBQtHL0YjUwHNVUA76XS8rlARBOVvX6zZw="; }; nativeBuildInputs = [ installShellFiles ]; |