mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
subversion: Remove apparently unnecessary environment variables
At least it seems to build fine (and use clang) without them.
This commit is contained in:
parent
542a4d0287
commit
6db6dea4c9
1 changed files with 2 additions and 7 deletions
|
@ -15,7 +15,7 @@ assert httpServer -> httpd != null;
|
|||
assert pythonBindings -> swig != null && python != null;
|
||||
assert javahlBindings -> jdk != null && perl != null;
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
version = "1.8.10";
|
||||
|
||||
|
@ -77,9 +77,4 @@ stdenv.mkDerivation (rec {
|
|||
maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ];
|
||||
hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||
};
|
||||
} // stdenv.lib.optionalAttrs stdenv.isDarwin {
|
||||
CXX = "clang++";
|
||||
CC = "clang";
|
||||
CPP = "clang -E";
|
||||
CXXCPP = "clang++ -E";
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue