chromium: Shorten line length of name attribute.

No feature change, I'm just very nitpicky if it comes to lines with more
than 79 characters.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-11-25 10:08:28 +01:00
parent 7ae1a17c89
commit 518173ac24
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -59,8 +59,10 @@ let
categories = "Network;WebBrowser";
};
suffix = if channel != "stable" then "-" + channel else "";
in stdenv.mkDerivation {
name = "chromium${if channel != "stable" then "-" + channel else ""}-${chromium.browser.version}";
name = "chromium${suffix}-${chromium.browser.version}";
buildInputs = [ makeWrapper ];