mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 10:44:36 +00:00
https://hydra.nixos.org/build/325898125/nixlog/2/tail
Same situation as in commit 8ab9645b5a
24 lines
391 B
Nix
24 lines
391 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchpatch,
|
|
fetchurl,
|
|
autoreconfHook,
|
|
autoconf269,
|
|
...
|
|
}@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
|
|
];
|
|
}
|
|
)
|