blob: 8827587eeb6d453b8e8ee5801a0c571c1f37af76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "19.1.7";
src = fetchFromGitHub {
owner = "llvm";
repo = "llvm-project";
rev = "llvmorg-${version}";
hash = "sha256-cZAB5vZjeTsXt9QHbP5xluWNQnAHByHtHnAhVDV0E6I=";
};
patches = [];
postPatch = "";
sourceRoot = "source/libcxxabi";
}
|