distcc: Fixing indentation
Noticed by niksnut.
This commit is contained in:
parent
63035ba87d
commit
499e686ca5
@ -4,9 +4,9 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "distcc";
|
name = "distcc";
|
||||||
version = "3.1";
|
version = "3.1";
|
||||||
distcc = stdenv.mkDerivation {
|
distcc = stdenv.mkDerivation {
|
||||||
name = "${name}-${version}";
|
name = "${name}-${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://distcc.googlecode.com/files/${name}-${version}.tar.bz2";
|
url = "http://distcc.googlecode.com/files/${name}-${version}.tar.bz2";
|
||||||
@ -38,6 +38,9 @@ distcc = stdenv.mkDerivation {
|
|||||||
passthru = {
|
passthru = {
|
||||||
# A derivation that provides gcc and g++ commands, but that
|
# A derivation that provides gcc and g++ commands, but that
|
||||||
# will end up calling distcc for the given cacheDir
|
# 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"
|
links = extraConfig : (runCommand "distcc-links"
|
||||||
{ inherit (gcc) langC langCC; }
|
{ inherit (gcc) langC langCC; }
|
||||||
''
|
''
|
||||||
@ -69,6 +72,6 @@ distcc = stdenv.mkDerivation {
|
|||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
distcc
|
distcc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user