google-chrome: remove "with" usage to simplify the expr
This "with" usage makes it trickier to track where the actual source package of this derivation comes from. Remove that use of with to make it a little easier to understand.
This commit is contained in:
parent
7a2662569d
commit
4aab59165f
@ -38,13 +38,12 @@
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
with chromium.upstream-info;
|
||||
|
||||
let
|
||||
opusWithCustomModes = libopus.override {
|
||||
withCustomModes = true;
|
||||
};
|
||||
|
||||
version = chromium.upstream-info.version;
|
||||
gtk = if (versionAtLeast version "59.0.0.0") then gtk3 else gtk2;
|
||||
gnome = if (versionAtLeast version "59.0.0.0") then gnome3 else gnome2;
|
||||
|
||||
@ -68,7 +67,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
name = "google-chrome${suffix}-${version}";
|
||||
|
||||
src = binary;
|
||||
src = chromium.upstream-info.binary;
|
||||
|
||||
buildInputs = [
|
||||
patchelf
|
||||
|
Loading…
Reference in New Issue
Block a user