Merge pull request #19063 from puffnfresh/package/redprl

redprl: remove explicit builder
This commit is contained in:
Tuomas Tynkkynen 2016-09-29 04:59:12 +03:00 committed by GitHub
commit 7eaaaf0100

View File

@ -11,12 +11,11 @@ stdenv.mkDerivation {
patchPhase = '' patchPhase = ''
patchShebangs ./script/ patchShebangs ./script/
''; '';
builder = builtins.toFile "builder.sh" '' buildPhase = ''
source $stdenv/setup
mkdir -p $out/bin
cp -r $src/* .
chmod -R +w src
./script/mlton.sh ./script/mlton.sh
'';
installPhase = ''
mkdir -p $out/bin
mv ./bin/redprl $out/bin mv ./bin/redprl $out/bin
''; '';
meta = { meta = {