summary refs log tree commit diff
path: root/pkgs/misc/emulators/atari800/builder.sh
blob: 04351a9bca1c1a56881d3d059ff64e62bb24158d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source $stdenv/setup

preConfigure=preConfigure
preConfigure() {
    cd src
}

postInstall=postInstall
postInstall() {
    romsDir=$out/share/atari800/roms
    ensureDir $romsDir
    unzip $rom -d $romsDir
}

genericBuild