summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/scons/builder.sh
blob: c5c1a97e45997fe6becf0b13674b20f5332c60f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
source $stdenv/setup

buildPhase() {
    true
}

installPhase() {
    python setup.py install --prefix=$out
}

genericBuild