db0286b5f6
Readline is e.g. required for autocomplete, history, and advanced line editing support in mclient.
27 lines
654 B
Nix
27 lines
654 B
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, bison, openssl, readline
|
|
}:
|
|
|
|
let
|
|
version = "11.29.3";
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "monetdb-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
|
|
sha256 = "18l4jkkryki5az5n7gnalfdxz6ibnkg3q2z4cwh1010b313wqi8s";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ bison openssl readline ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An open source database system";
|
|
homepage = https://www.monetdb.org/;
|
|
license = licenses.mpl20;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.StillerHarpo ];
|
|
};
|
|
}
|