sqlcipher: install manpage
This commit is contained in:
parent
212b9f38bc
commit
0674b0d411
@ -1,4 +1,4 @@
|
|||||||
{ 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;
|
||||||
|
|
||||||
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0mx0n5n3s39r25b31sdkrd4psxjqqgcv6rpm9d57w5rlk75g2fiv";
|
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,6 +24,10 @@ 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 = "http://sqlcipher.net/";
|
||||||
description = "Full Database Encryption for SQLite";
|
description = "Full Database Encryption for SQLite";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user