summary refs log tree commit diff
path: root/pkgs/games/asc
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-04-21 21:43:18 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-04-21 21:43:52 +0100
commit58253e37e9311b3eceefc4f2d82c32e92a1264a1 (patch)
tree04fb5158abca4214e6405b87d915431f56f3e14c /pkgs/games/asc
parent595efb966d38eb9480cf332adc0ffcb92855e685 (diff)
downloadnixpkgs-58253e37e9311b3eceefc4f2d82c32e92a1264a1.tar
nixpkgs-58253e37e9311b3eceefc4f2d82c32e92a1264a1.tar.gz
nixpkgs-58253e37e9311b3eceefc4f2d82c32e92a1264a1.tar.bz2
nixpkgs-58253e37e9311b3eceefc4f2d82c32e92a1264a1.tar.lz
nixpkgs-58253e37e9311b3eceefc4f2d82c32e92a1264a1.tar.xz
nixpkgs-58253e37e9311b3eceefc4f2d82c32e92a1264a1.tar.zst
nixpkgs-58253e37e9311b3eceefc4f2d82c32e92a1264a1.zip
asc: fix build
Diffstat (limited to 'pkgs/games/asc')
-rw-r--r--pkgs/games/asc/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/asc/default.nix b/pkgs/games/asc/default.nix
index e532fb75e0b..6b7ead6d203 100644
--- a/pkgs/games/asc/default.nix
+++ b/pkgs/games/asc/default.nix
@@ -1,6 +1,6 @@
 { fetchurl, stdenv, SDL, SDL_image, SDL_mixer, SDL_sound, libsigcxx, physfs
-, boost, expat, freetype, libjpeg, wxGTK, lua, perl, pkgconfig, zlib, zip, bzip2,
-libpng, libtiff, fluidsynth, libmikmod }:
+, boost, expat, freetype, libjpeg, wxGTK, lua, perl, pkgconfig, zlib, zip, bzip2
+, libpng, libtiff, fluidsynth, libmikmod, libvorbis, flac, libogg }:
 
 stdenv.mkDerivation rec {
   name = "asc-2.6.0.0";
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     SDL SDL_image SDL_mixer SDL_sound libsigcxx physfs boost expat
     freetype libjpeg wxGTK lua perl pkgconfig zlib zip bzip2 libpng
-    libtiff fluidsynth libmikmod
+    libtiff fluidsynth libmikmod flac libvorbis libogg
   ];
 
   meta = with stdenv.lib; {
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
     longDescription = ''
       Advanced Strategic Command is a free, turn based strategy game. It is
       designed in the tradition of the Battle Isle series from Bluebyte and is
-      currently available for Windows and Linux. 
+      currently available for Windows and Linux.
     '';
 
     homepage = http://www.asc-hq.org/;