Rename chromium-stable -> chromium

Suffixes like "-stable" are superfluous because packages are assumed
to be stable. This makes "nix-env -i chromium" do the expected thing.
This commit is contained in:
Eelco Dolstra 2014-10-03 17:47:30 +02:00
parent 1a8ca0b8bf
commit 31189616e4

View File

@ -60,7 +60,7 @@ let
}; };
in stdenv.mkDerivation { in stdenv.mkDerivation {
name = "chromium-${channel}-${chromium.browser.version}"; name = "chromium${if channel != "stable" then "-" + channel else ""}-${chromium.browser.version}";
buildInputs = [ makeWrapper ]; buildInputs = [ makeWrapper ];