Merge pull request #26884 from obsidiansystems/purge-stdenv-cross
Purge stdenv cross
This commit is contained in:
@@ -10,10 +10,6 @@ stdenv.mkDerivation {
|
||||
sed -i 's@/usr/bin/install@install@g ; s/gcc/cc/g' Makefile
|
||||
'';
|
||||
|
||||
crossAttrs = {
|
||||
makeFlags = "CC=${stdenv.cross.config}-gcc";
|
||||
};
|
||||
|
||||
src = fetchurl {
|
||||
url = http://vicerveza.homeunix.net/~viric/soft/tm/tm-0.4.1.tar.gz;
|
||||
sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{stdenv, fetchurl,
|
||||
sendmailPath ? "/run/wrappers/bin/sendmail" }:
|
||||
{ stdenv, fetchurl
|
||||
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
@@ -7,10 +8,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installPhase=''make install "PREFIX=$out"'';
|
||||
|
||||
crossAttrs = {
|
||||
makeFlags = "CC=${stdenv.cross.config}-gcc";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -i s,/usr/sbin/sendmail,${sendmailPath}, mail.c ts.1
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user