makeDotElm: fix
Some elm packages (eg. https://github.com/NoRedInk/elm-simple-fuzzy/ ) have a Makefile which the standard builder tries to build and fails because of missing dependencies. This change forces a no-op configure and build phase to avoid such a situation.
This commit is contained in:
parent
5b49946723
commit
31c42bb05b
1 changed files with 8 additions and 0 deletions
|
@ -11,6 +11,14 @@ ver: deps:
|
||||||
inherit (info) sha256;
|
inherit (info) sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
true
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
true
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
cp -r * $out
|
cp -r * $out
|
||||||
|
|
Loading…
Reference in a new issue