about summary refs log tree commit diff
path: root/pkgs/applications/editors/nedit/builder.sh
blob: a16ff3f32e92e67e391e72ffa4075adabfbbcee2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
source $stdenv/setup

export NIX_CFLAGS_COMPILE="-DBUILD_UNTESTED_NEDIT -L$motif/lib $NIX_CFLAGS_COMPILE"

installPhase=installPhase
installPhase() {
    ensureDir $out/bin
    cp -p source/nedit source/nc $out/bin
}

genericBuild