nixpkgs/pkgs/development/libraries/db/db-6.2.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
330 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, ... } @ args:
2017-03-17 09:53:11 +00:00
2019-08-13 21:52:01 +00:00
import ./generic.nix (args // {
2024-01-20 04:43:01 +00:00
version = "6.2.32";
sha256 = "1yx8wzhch5wwh016nh0kfxvknjkafv6ybkqh6nh7lxx50jqf5id9";
2024-03-19 12:26:06 +00:00
license = lib.licenses.agpl3Only;
extraPatches = [
./clang-6.0.patch
./CVE-2017-10140-cwd-db_config.patch
./darwin-mutexes.patch
];
2017-03-17 09:53:11 +00:00
})