* Install genfkey, a tool for creating triggers from foreign key

constraints (which Sqlite doesn't support directly).

svn path=/nixpkgs/trunk/; revision=14515
This commit is contained in:
Eelco Dolstra 2009-03-12 14:37:39 +00:00
parent cef5be0bc9
commit dbfcf0c5f4

View File

@ -14,6 +14,10 @@ stdenv.mkDerivation rec {
configureFlags = "--disable-static --with-readline-inc=-I${readline}/include";
postInstall = ''
gcc -L$out/lib -I$out/include tool/genfkey.c -lsqlite3 -o $out/bin/genfkey
'';
meta = {
homepage = http://www.sqlite.org/;
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";