sqlcipher: add changelog to meta

This commit is contained in:
Fabian Affolter
2022-12-25 09:42:34 +01:00
committed by Frederik Rietdijk
parent 1d28b6582f
commit bdd86588f7

View File

@@ -1,4 +1,15 @@
{ stdenv, lib, fetchFromGitHub, openssl, tcl, installShellFiles, buildPackages, readline, ncurses, zlib, sqlite }:
{ lib
, stdenv
, fetchFromGitHub
, openssl
, tcl
, installShellFiles
, buildPackages
, readline
, ncurses
, zlib
, sqlite
}:
stdenv.mkDerivation rec {
pname = "sqlcipher";
@@ -8,12 +19,24 @@ stdenv.mkDerivation rec {
owner = "sqlcipher";
repo = "sqlcipher";
rev = "v${version}";
sha256 = "sha256-yo7bB6xgF23Hdur25fprSFgbuxNclseUCdq3DFAfIK8=";
hash = "sha256-yo7bB6xgF23Hdur25fprSFgbuxNclseUCdq3DFAfIK8=";
};
nativeBuildInputs = [ installShellFiles tcl ];
buildInputs = [ readline ncurses openssl zlib ];
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [
installShellFiles
tcl
];
buildInputs = [
readline
ncurses
openssl
zlib
];
depsBuildBuild = [
buildPackages.stdenv.cc
];
configureFlags = [
"--enable-threadsafe"
@@ -35,9 +58,11 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
homepage = "https://www.zetetic.net/sqlcipher/";
changelog = "https://github.com/sqlcipher/sqlcipher/blob/v${version}/CHANGELOG.md";
description = "SQLite extension that provides 256 bit AES encryption of database files";
platforms = platforms.unix;
homepage = "https://www.zetetic.net/sqlcipher/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
};
}