2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-04-16 14:38:14 +00:00

Merge pull request from StillerHarpo/monetdb-11.43.15

monetdb: 11.43.9 -> 11.43.15
This commit is contained in:
Christian Kögler 2022-09-29 19:12:38 +02:00 committed by GitHub
commit 3424ae1888
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
pname = "monetdb";
version = "11.43.21";
version = "11.45.7";
src = fetchurl {
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
sha256 = "sha256-1JfwRMpsEbK+HELwp5BFDkJoJ2yIgHwWvwhGfeaBGsA=";
sha256 = "sha256-hIfi8YfZIExgv+z3YAxvkX8MiiGmOjB+/OryUoRPmDI=";
};
postPatch = ''
@ -18,7 +18,14 @@ stdenv.mkDerivation rec {
'';
postInstall = ''
rm $out/bin/monetdb_mtest.sh
rm $out/bin/monetdb_mtest.sh \
$out/bin/mktest.py \
$out/bin/sqlsample.php \
$out/bin/sqllogictest.py \
$out/bin/Mz.py \
$out/bin/Mtest.py \
$out/bin/sqlsample.pl \
$out/bin/malsample.pl
'';
nativeBuildInputs = [ cmake python3 ];