mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03: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 changed files with 4 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue