summary refs log tree commit diff
path: root/pkgs/games/ivan/default.nix
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-07-03 12:41:18 +0000
committerOrivej Desh <orivej@gmx.fr>2018-07-03 12:41:18 +0000
commit9641ab9a27cc375ef4f458c0e6c19148ae2950d4 (patch)
tree09a46613ec0ac4a671841c5ac0a9cf804c3eae99 /pkgs/games/ivan/default.nix
parent48272ebb6c8e9d1c94a59bffed7b7cc4f178409c (diff)
downloadnixpkgs-9641ab9a27cc375ef4f458c0e6c19148ae2950d4.tar
nixpkgs-9641ab9a27cc375ef4f458c0e6c19148ae2950d4.tar.gz
nixpkgs-9641ab9a27cc375ef4f458c0e6c19148ae2950d4.tar.bz2
nixpkgs-9641ab9a27cc375ef4f458c0e6c19148ae2950d4.tar.lz
nixpkgs-9641ab9a27cc375ef4f458c0e6c19148ae2950d4.tar.xz
nixpkgs-9641ab9a27cc375ef4f458c0e6c19148ae2950d4.tar.zst
nixpkgs-9641ab9a27cc375ef4f458c0e6c19148ae2950d4.zip
ivan: fix build after #41902
Diffstat (limited to 'pkgs/games/ivan/default.nix')
-rw-r--r--pkgs/games/ivan/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/ivan/default.nix b/pkgs/games/ivan/default.nix
index 3431be5359e..3281c3d28d1 100644
--- a/pkgs/games/ivan/default.nix
+++ b/pkgs/games/ivan/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchFromGitHub, libpng, cmake, SDL2, SDL2_mixer, pkgconfig, pcre}:
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, SDL2_mixer, alsaLib, libpng, pcre }:
 
 stdenv.mkDerivation rec {
 
@@ -12,12 +12,12 @@ stdenv.mkDerivation rec {
     sha256 = "1r3fcccgpjmzzkg0lfmq76igjapr01kh97vz671z60jg7gyh301b";
   };
 
-  buildInputs = [SDL2 SDL2_mixer libpng pcre];
+  nativeBuildInputs = [ cmake pkgconfig ];
 
-  nativeBuildInputs = [cmake pkgconfig];
+  buildInputs = [ SDL2 SDL2_mixer alsaLib libpng pcre ];
 
   hardeningDisable = ["all"];
-  
+
   # To store bone and high score files in ~/.ivan of the current user
   patches = [./homedir.patch];