nixpkgs/pkgs/development/libraries/sqlcipher/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.3 KiB
Nix
Raw Normal View History

2022-12-25 08:42:34 +00:00
{ lib
, stdenv
, fetchFromGitHub
, openssl
, tcl
, installShellFiles
, buildPackages
, readline
, ncurses
, zlib
, sqlite
}:
2014-07-02 09:18:27 +00:00
2016-08-17 23:19:45 +00:00
stdenv.mkDerivation rec {
pname = "sqlcipher";
2022-12-24 02:53:24 +00:00
version = "4.5.3";
2014-07-02 09:18:27 +00:00
2016-08-17 23:19:45 +00:00
src = fetchFromGitHub {
owner = "sqlcipher";
repo = "sqlcipher";
rev = "v${version}";
2022-12-25 08:42:34 +00:00
hash = "sha256-yo7bB6xgF23Hdur25fprSFgbuxNclseUCdq3DFAfIK8=";
2014-07-02 09:18:27 +00:00
};
2022-12-25 08:42:34 +00:00
nativeBuildInputs = [
installShellFiles
tcl
];
buildInputs = [
readline
ncurses
openssl
zlib
];
depsBuildBuild = [
buildPackages.stdenv.cc
];
2014-07-02 09:18:27 +00:00
configureFlags = [
"--enable-threadsafe"
"--with-readline-inc=-I${lib.getDev readline}/include"
];
CFLAGS = [
# We want feature parity with sqlite
sqlite.NIX_CFLAGS_COMPILE
"-DSQLITE_HAS_CODEC"
];
2014-07-02 09:18:27 +00:00
2021-08-03 23:10:25 +00:00
BUILD_CC = "$(CC_FOR_BUILD)";
2014-07-02 09:18:27 +00:00
TCLLIBDIR = "${placeholder "out"}/lib/tcl${lib.versions.majorMinor tcl.version}";
2020-05-24 09:20:00 +00:00
postInstall = ''
installManPage sqlcipher.1
'';
meta = with lib; {
2022-12-25 08:42:34 +00:00
changelog = "https://github.com/sqlcipher/sqlcipher/blob/v${version}/CHANGELOG.md";
2020-05-24 09:20:00 +00:00
description = "SQLite extension that provides 256 bit AES encryption of database files";
2022-12-25 08:42:34 +00:00
homepage = "https://www.zetetic.net/sqlcipher/";
2016-08-17 23:19:45 +00:00
license = licenses.bsd3;
2022-12-25 08:42:34 +00:00
maintainers = with maintainers; [ ];
platforms = platforms.unix;
2014-07-02 09:18:27 +00:00
};
}