Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b56191746ea5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 939bb2189b19
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 16, 2018

  1. monetdb: 11.29.7 -> 11.31.11

    primeos committed Nov 16, 2018
    Copy the full SHA
    939bb21 View commit details
Showing with 10 additions and 6 deletions.
  1. +10 −6 pkgs/servers/sql/monetdb/default.nix
16 changes: 10 additions & 6 deletions pkgs/servers/sql/monetdb/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
{ stdenv, fetchurl, pkgconfig
, bison, openssl, readline
{ stdenv, fetchurl, pkgconfig, file
, bison, openssl, readline, bzip2
}:

let
version = "11.29.7";
version = "11.31.11";
in stdenv.mkDerivation rec {

name = "monetdb-${version}";

src = fetchurl {
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
sha256 = "19f9zfg94k8hr9qc7jp1iwl8av08mibzgmid0gbqplyhf6x1j0r7";
sha256 = "0x504jdxnqpxln6b69dqagzm2zknf11lykckmydzi6vapfc5msd3";
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ bison openssl readline ];
postPatch = ''
sed -i "s,/usr/bin/file,${file}/bin/file," configure
'';

nativeBuildInputs = [ pkgconfig file ];
buildInputs = [ bison openssl readline bzip2 ];

meta = with stdenv.lib; {
description = "An open source database system";