mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +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 {
|
stdenv.mkDerivation {
|
||||||
name = "crack-attack-1.1.14";
|
name = "crack-attack-1.1.14";
|
||||||
@ -8,10 +8,18 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1sakj9a2q05brpd7lkqxi8q30bccycdzd96ns00s6jbxrzjlijkm";
|
sha256 = "1sakj9a2q05brpd7lkqxi8q30bccycdzd96ns00s6jbxrzjlijkm";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./crack-attack-1.1.14-gcc43.patch
|
||||||
|
./crack-attack-1.1.14-glut.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags = [ "--enable-sound=yes" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ gtk2 freeglut SDL libGLU_combined libXi libXmu ];
|
buildInputs = [ gtk2 freeglut SDL SDL_mixer libGLU_combined libXi libXmu ];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A fast-paced puzzle game inspired by the classic Super NES title Tetris Attack!";
|
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;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.piotr ];
|
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