chromium: Drop dependency on subversion.

Versions older than 21 needed subversion in order to build. As the oldest
version we support is 21, we no longer need this dependency.
This commit is contained in:
aszlig 2012-08-26 03:03:24 +02:00
parent 819ee63851
commit b1a6a98139
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
1 changed files with 1 additions and 6 deletions

View File

@ -1,8 +1,5 @@
{ stdenv, getConfig, fetchurl, makeWrapper, which
# this is needed in order to build the versions older than 21.x
, subversion
# default dependencies
, bzip2, flac, speex
, libevent, expat, libjpeg
@ -73,14 +70,12 @@ let
use_system_v8 = false;
};
needsSubversion = stdenv.lib.versionOlder sourceInfo.version "21.0.0.0";
defaultDependencies = [
bzip2 flac speex
libevent expat libjpeg
libpng libxml2 libxslt
xdg_utils yasm zlib
] ++ stdenv.lib.optional needsSubversion subversion;
];
in stdenv.mkDerivation rec {
name = "${packageName}-${version}";