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

import ./generic.nix (args // {
  version = "6.0.30";
  sha256 = "1lhglbvg65j5slrlv7qv4vi3cvd7kjywa07gq1abzschycf4p3k0";
  license = lib.licenses.agpl3Only;
  extraPatches = [
    ./clang-6.0.patch
    ./CVE-2017-10140-cwd-db_config.patch
    ./darwin-mutexes.patch
  ];
})