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:
parent
06269689eb
commit
db0286b5f6
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue