commit
b850eb3404
1 changed files with 7 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
, buildPlatform, hostPlatform
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (rec {
|
||||
name = "ed-${version}";
|
||||
version = "1.14.2";
|
||||
|
||||
|
@ -36,4 +36,9 @@ stdenv.mkDerivation rec {
|
|||
maintainers = [ ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
} // stdenv.lib.optionalAttrs (hostPlatform != buildPlatform) {
|
||||
# This may be moved above during a stdenv rebuild.
|
||||
preConfigure = ''
|
||||
configureFlagsArray+=("CC=$CC")
|
||||
'';
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue