about summary refs log tree commit diff
path: root/pkgs/development/libraries/db/db-5.3.nix
blob: 91adfa24b58dc2f94fe63f06408d9cb5399ae1d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ stdenv, fetchurl, ... } @ args:

import ./generic.nix (args // rec {
  version = "5.3.28";
  sha256 = "0a1n5hbl7027fbz5lm0vp0zzfp1hmxnz14wx3zl9563h83br5ag0";
  branch = "5.3";
  # https://community.oracle.com/thread/3952592
  # this patch renames some sybols that conflict with libc++-3.8
  # symbols: atomic_compare_exchange, atomic_init, store
  extraPatches = [ ./clang-5.3.patch ];
})