runit: fix build

This commit is contained in:
Nikolay Amiantov 2016-04-30 05:32:06 +03:00
parent 48fb16ffbf
commit 7a37ac15b3

View File

@ -13,8 +13,12 @@ stdenv.mkDerivation rec {
patches = [ ./Makefile.patch ];
buildPhase = ''
postPatch = ''
cd ${name}
sed -i 's,-static,,g' src/Makefile
'';
buildPhase = ''
make -C 'src'
'';