runit: support building with clangStdenv

This commit is contained in:
Joachim Fasting 2016-08-27 11:44:07 +02:00
parent ee1cc78333
commit ac193edd2d
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08

View File

@ -21,6 +21,10 @@ stdenv.mkDerivation rec {
preBuild = ''
cd src
# Both of these are originally hard-coded to gcc
echo cc > conf-cc
echo cc > conf-ld
'';
installPhase = ''
@ -36,6 +40,6 @@ stdenv.mkDerivation rec {
license = licenses.bsd3;
homepage = "http://smarden.org/runit";
maintainers = with maintainers; [ rickynils joachifm ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}