monetdb: 11.29.7 -> 11.31.11
This commit is contained in:
parent
b56191746e
commit
939bb2189b
@ -1,20 +1,24 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, pkgconfig, file
|
||||||
, bison, openssl, readline
|
, bison, openssl, readline, bzip2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "11.29.7";
|
version = "11.31.11";
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "monetdb-${version}";
|
name = "monetdb-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
|
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
|
||||||
sha256 = "19f9zfg94k8hr9qc7jp1iwl8av08mibzgmid0gbqplyhf6x1j0r7";
|
sha256 = "0x504jdxnqpxln6b69dqagzm2zknf11lykckmydzi6vapfc5msd3";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
postPatch = ''
|
||||||
buildInputs = [ bison openssl readline ];
|
sed -i "s,/usr/bin/file,${file}/bin/file," configure
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig file ];
|
||||||
|
buildInputs = [ bison openssl readline bzip2 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An open source database system";
|
description = "An open source database system";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user