distcc: Fixing indentation

Noticed by niksnut.
This commit is contained in:
Lluís Batlle i Rossell 2012-12-26 23:32:23 +01:00
parent 63035ba87d
commit 499e686ca5

View File

@ -4,9 +4,9 @@
}:
let
name = "distcc";
version = "3.1";
distcc = stdenv.mkDerivation {
name = "distcc";
version = "3.1";
distcc = stdenv.mkDerivation {
name = "${name}-${version}";
src = fetchurl {
url = "http://distcc.googlecode.com/files/${name}-${version}.tar.bz2";
@ -38,6 +38,9 @@ distcc = stdenv.mkDerivation {
passthru = {
# A derivation that provides gcc and g++ commands, but that
# will end up calling distcc for the given cacheDir
#
# extraConfig is meant to be sh lines exporting environment
# variables like DISTCC_HOSTS, DISTCC_DIR, ...
links = extraConfig : (runCommand "distcc-links"
{ inherit (gcc) langC langCC; }
''
@ -69,6 +72,6 @@ distcc = stdenv.mkDerivation {
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.simons ];
};
};
};
in
distcc
distcc