nixpkgs/pkgs/development/libraries/sqlcipher/default.nix
R. RyanTM 3daf772728 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
2018-12-13 23:43:47 -08:00

32 lines
923 B
Nix

{ stdenv, lib, fetchFromGitHub, openssl, tcl, readline ? null, ncurses ? null }:
assert readline != null -> ncurses != null;
stdenv.mkDerivation rec {
name = "sqlcipher-${version}";
version = "4.0.0";
src = fetchFromGitHub {
owner = "sqlcipher";
repo = "sqlcipher";
rev = "v${version}";
sha256 = "0faadjr4qnm1pvm5yx37jfqqxqwii02nzlmmi2h91z6371888m7g";
};
buildInputs = [ readline ncurses openssl tcl ];
configureFlags = [ "--enable-threadsafe" "--disable-tcl" ];
CFLAGS = [ "-DSQLITE_ENABLE_COLUMN_METADATA=1" "-DSQLITE_SECURE_DELETE=1" "-DSQLITE_ENABLE_UNLOCK_NOTIFY=1" "-DSQLITE_HAS_CODEC" ];
LDFLAGS = lib.optional (readline != null) "-lncurses";
doCheck = false; # fails. requires tcl?
meta = with stdenv.lib; {
homepage = http://sqlcipher.net/;
description = "Full Database Encryption for SQLite";
platforms = platforms.unix;
license = licenses.bsd3;
};
}