mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
crack-attack: enable custom sounds
crack-attack will search for user-provided musics and sounds under ~/.crack-attack/
This commit is contained in:
parent
fe551d1d53
commit
bda40a20d8
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gtk2, freeglut, SDL, libGLU_combined, libXi, libXmu}:
|
||||
{ stdenv, fetchurl, pkgconfig, gtk2, freeglut, SDL, SDL_mixer, libGLU_combined, libXi, libXmu }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "crack-attack-1.1.14";
|
||||
@ -8,10 +8,18 @@ stdenv.mkDerivation {
|
||||
sha256 = "1sakj9a2q05brpd7lkqxi8q30bccycdzd96ns00s6jbxrzjlijkm";
|
||||
};
|
||||
|
||||
patches = [
|
||||
./crack-attack-1.1.14-gcc43.patch
|
||||
./crack-attack-1.1.14-glut.patch
|
||||
];
|
||||
|
||||
configureFlags = [ "--enable-sound=yes" ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ gtk2 freeglut SDL libGLU_combined libXi libXmu ];
|
||||
buildInputs = [ gtk2 freeglut SDL SDL_mixer libGLU_combined libXi libXmu ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "A fast-paced puzzle game inspired by the classic Super NES title Tetris Attack!";
|
||||
@ -20,9 +28,4 @@ stdenv.mkDerivation {
|
||||
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
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user