forked from mirrors/nixpkgs
runit: fix build
This commit is contained in:
parent
48fb16ffbf
commit
7a37ac15b3
1 changed files with 5 additions and 1 deletions
|
@ -13,8 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [ ./Makefile.patch ];
|
patches = [ ./Makefile.patch ];
|
||||||
|
|
||||||
buildPhase = ''
|
postPatch = ''
|
||||||
cd ${name}
|
cd ${name}
|
||||||
|
sed -i 's,-static,,g' src/Makefile
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
make -C 'src'
|
make -C 'src'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue