3
0
Fork 0
forked from mirrors/nixpkgs

chromium: Fix package name for browser derivation.

The packageName attribute defines the output path and binary name of the
product that's going to be created, so we really want to have "chromium"
instead of "chromium-browser" here, especially for the resulting binary.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-04-20 08:39:40 +02:00
parent 35944168e4
commit 18234b6768
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@ with stdenv.lib;
mkChromiumDerivation (base: rec {
name = "chromium-browser";
packageName = "chromium";
buildTargets = [ "chrome" ];
installPhase = ''

View file

@ -91,7 +91,7 @@ let
];
# build paths and release info
packageName = extraAttrs.name;
packageName = extraAttrs.packageName or extraAttrs.name;
buildType = "Release";
buildPath = "out/${buildType}";
libExecPath = "$out/libexec/${packageName}";