nixpkgs/pkgs/development/compilers/strategoxt/builder.sh

11 lines
224 B
Bash
Raw Normal View History

#! /bin/sh
buildinputs="$aterm $sdf"
. $stdenv/setup || exit 1
tar zxf $src || exit 1
cd strategoxt-* || exit 1
./configure --prefix=$out --with-aterm=$aterm --with-sdf=$sdf || exit 1
make || exit 1
make install || exit 1