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

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