about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/db/db-6.2.nix
blob: 2c1cb455feaee49f8a3edc2453ecaaeced353971 (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.2.32";
  sha256 = "1yx8wzhch5wwh016nh0kfxvknjkafv6ybkqh6nh7lxx50jqf5id9";
  license = lib.licenses.agpl3;
  extraPatches = [
    ./clang-6.0.patch
    ./CVE-2017-10140-cwd-db_config.patch
    ./darwin-mutexes.patch
  ];
})