From c6fa73b26c995c72aef0971f7b411ddb75f64308 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 23 Mar 2014 19:48:53 +0100 Subject: [PATCH] chromium: Propagate browser's meta to the wrapper. We obviously don't want the Hydra job of nixpkgs to fail, so we need to make sure that we have a proper meta attribute on the outermost derivation. For builds based on the Chromium source tree (like for example libcef), we can still move the wrapper elsewhere when we need it. Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/browsers/chromium/default.nix b/pkgs/applications/networking/browsers/chromium/default.nix index ca802770b6b9..2a2490555e51 100644 --- a/pkgs/applications/networking/browsers/chromium/default.nix +++ b/pkgs/applications/networking/browsers/chromium/default.nix @@ -52,4 +52,6 @@ in stdenv.mkDerivation { --set CHROMIUM_SANDBOX_BINARY_PATH "${sandboxBinary}" \ --add-flags "${chromium.plugins.flagsEnabled}" ''; + + inherit (chromium.browser) meta; }