nixpkgs/pkgs/development/compilers/flutter/update/get-engine-swiftshader.nix.in
2024-06-25 22:05:30 -07:00

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
'';
}