mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
11 lines
271 B
Nix
11 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
|
|
'';
|
|
}
|