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.
wip/yesman
Márton Boros 4 years ago committed by GitHub
parent 5b49946723
commit 31c42bb05b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      pkgs/development/compilers/elm/makeDotElm.nix

@ -11,6 +11,14 @@ ver: deps:
inherit (info) sha256;
};
configurePhase = ''
true
'';
buildPhase = ''
true
'';
installPhase = ''
mkdir -p $out
cp -r * $out

Loading…
Cancel
Save