mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
chromium/source: Move patches into its own subdir
We're going to reference the patches in the Chromium main build rather than applying it to the sources. So as a first step, this should keep the patches away from the "source" subdirectory so we can make it flat. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
3273605aef
commit
d6b11ed722
@ -42,11 +42,11 @@ in stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./build_fixes_46.patch
|
../patches/build_fixes_46.patch
|
||||||
./widevine.patch
|
../patches/widevine.patch
|
||||||
(if versionOlder version "50.0.0.0"
|
(if versionOlder version "50.0.0.0"
|
||||||
then ./nix_plugin_paths_46.patch
|
then ../patches/nix_plugin_paths_46.patch
|
||||||
else ./nix_plugin_paths_50.patch)
|
else ../patches/nix_plugin_paths_50.patch)
|
||||||
];
|
];
|
||||||
|
|
||||||
patchPhase = let
|
patchPhase = let
|
||||||
|
Loading…
Reference in New Issue
Block a user