nixpkgs/pkgs/games/crack-attack/default.nix
Georges Dupéron 069535c503 crack-attack: enable sound support in the crack-attack game.
The --enable-sound ./configure option enables the sound support in crack-attack.
This commit enables the --enable-sound option, and adds a dependency on SDL_mixer.
The following files still have to be supplied by the user, due to licencing issues upstream:

~/.crack-attack/music/game.ogg
~/.crack-attack/music/gameover.ogg
~/.crack-attack/music/prelude.ogg
~/.crack-attack/music/youwin.ogg
~/.crack-attack/sounds/block_awaking.wav
~/.crack-attack/sounds/block_dying.wav
~/.crack-attack/sounds/block_fallen.wav
~/.crack-attack/sounds/countdown.wav
~/.crack-attack/sounds/garbage_fallen.wav
~/.crack-attack/sounds/garbage_shattering.wav

The crack-attack game will detect when these sound files are present, and use them as background music and sound effects.
2017-11-01 02:25:55 +01:00

30 lines
923 B
Nix

{ stdenv, fetchurl, autoreconfHook, pkgconfig, gtk2, freeglut, SDL, SDL_mixer
, mesa, libXi, libXmu}:
stdenv.mkDerivation {
name = "crack-attack-1.1.14";
src = fetchurl {
url = mirror://savannah/crack-attack/crack-attack-1.1.14.tar.gz;
sha256 = "1sakj9a2q05brpd7lkqxi8q30bccycdzd96ns00s6jbxrzjlijkm";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gtk2 freeglut SDL SDL_mixer mesa libXi libXmu ];
configureFlags = [ "--enable-sound=yes" ];
hardeningDisable = [ "format" ];
meta = {
description = "A fast-paced puzzle game inspired by the classic Super NES title Tetris Attack!";
homepage = http://www.nongnu.org/crack-attack/;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.piotr ];
};
patches = [
./crack-attack-1.1.14-gcc43.patch
./crack-attack-1.1.14-glut.patch
];
}