From 8cbb9180c47df6368edfa2509494ce408a616018 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 7 Aug 2011 22:03:53 +0000 Subject: [PATCH] haskell-SDL-mixer: added missing buildInput svn path=/nixpkgs/trunk/; revision=28359 --- pkgs/development/libraries/haskell/SDL-mixer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/SDL-mixer/default.nix b/pkgs/development/libraries/haskell/SDL-mixer/default.nix index be5909a4fdb..d60d2d4f34e 100644 --- a/pkgs/development/libraries/haskell/SDL-mixer/default.nix +++ b/pkgs/development/libraries/haskell/SDL-mixer/default.nix @@ -1,10 +1,10 @@ -{cabal, SDL} : +{cabal, SDL, SDL_mixer} : cabal.mkDerivation (self : { pname = "SDL-mixer"; version = "0.6.1"; sha256 = "1fxp5sz0w6pr5047jjvh81wkljxsl7fca239364i50m44mpcsyn1"; - propagatedBuildInputs = [ SDL ]; + propagatedBuildInputs = [ SDL SDL_mixer ]; meta = { description = "Binding to libSDL_mixer"; license = self.stdenv.lib.licenses.bsd3;