blob: 9fe5d1525b0ea6a0774a92da8dfde1abe91cf56a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
lib,
stdenv,
fetchpatch,
fetchurl,
autoreconfHook,
autoconf269,
...
}@args:
import ./generic.nix (
args
// {
version = "6.2.32";
sha256 = "1yx8wzhch5wwh016nh0kfxvknjkafv6ybkqh6nh7lxx50jqf5id9";
license = lib.licenses.agpl3Only;
extraPatches = [
./clang-6.0.patch
./CVE-2017-10140-cwd-db_config.patch
./darwin-mutexes.patch
];
}
)
|