98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
10 lines
271 B
Nix
10 lines
271 B
Nix
{ fetchgit }:
|
|
fetchgit {
|
|
url = "https://swiftshader.googlesource.com/SwiftShader.git";
|
|
rev = "@engine_swiftshader_rev@";
|
|
|
|
# Keep with in sync of pkgs/development/compilers/flutter/engine/package.nix
|
|
postFetch = ''
|
|
rm -rf $out/third_party/llvm-project
|
|
'';
|
|
}
|