Merge pull request #88765 from r-ryantm/auto-update/sqlcipher
sqlcipher: 4.3.0 -> 4.4.0
This commit is contained in:
commit
32f9cf1336
1 changed files with 11 additions and 5 deletions
|
@ -1,18 +1,20 @@
|
||||||
{ stdenv, lib, fetchFromGitHub, openssl, tcl, readline ? null, ncurses ? null }:
|
{ stdenv, lib, fetchFromGitHub, openssl, tcl, installShellFiles, readline ? null, ncurses ? null }:
|
||||||
|
|
||||||
assert readline != null -> ncurses != null;
|
assert readline != null -> ncurses != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "sqlcipher";
|
pname = "sqlcipher";
|
||||||
version = "4.3.0";
|
version = "4.4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sqlcipher";
|
owner = "sqlcipher";
|
||||||
repo = "sqlcipher";
|
repo = "sqlcipher";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0s1aiwl61nl3b4ym4v050wlbbx0iypknqsj3ar12dw5hljlzx6f8";
|
sha256 = "0mx0n5n3s39r25b31sdkrd4psxjqqgcv6rpm9d57w5rlk75g2fiv";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
buildInputs = [ readline ncurses openssl tcl ];
|
buildInputs = [ readline ncurses openssl tcl ];
|
||||||
|
|
||||||
configureFlags = [ "--enable-threadsafe" "--disable-tcl" ];
|
configureFlags = [ "--enable-threadsafe" "--disable-tcl" ];
|
||||||
|
@ -22,9 +24,13 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
doCheck = false; # fails. requires tcl?
|
doCheck = false; # fails. requires tcl?
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installManPage sqlcipher.1
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://sqlcipher.net/";
|
homepage = "https://www.zetetic.net/sqlcipher/";
|
||||||
description = "Full Database Encryption for SQLite";
|
description = "SQLite extension that provides 256 bit AES encryption of database files";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue