1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/tools/parsing/jikespg/builder.sh

17 lines
217 B
Bash
Raw Normal View History

source $stdenv/setup
set -e
configurePhase=configurePhase
configurePhase() {
tar zxvf $src
cd jikespg/src
}
installPhase=installPhase
installPhase() {
ensureDir $out/bin
cp jikespg $out/bin
}
genericBuild