1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

monetdb: Build with readline for better interactivity

Readline is e.g. required for autocomplete, history, and advanced line
editing support in mclient.
This commit is contained in:
Michael Weiss 2018-05-10 12:58:23 +02:00
parent 06269689eb
commit db0286b5f6

View file

@ -1,4 +1,6 @@
{ stdenv, fetchurl, pkgconfig, bison, openssl }:
{ stdenv, fetchurl, pkgconfig
, bison, openssl, readline
}:
let
version = "11.29.3";
@ -12,7 +14,7 @@ in stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ bison openssl ];
buildInputs = [ bison openssl readline ];
meta = with stdenv.lib; {
description = "An open source database system";