hackage-packages.nix: re-generate to fix ALUT

This commit is contained in:
Peter Simons 2015-01-11 19:57:20 +01:00
parent 4cd9c8c3ae
commit f49fa1f20b
1 changed files with 3 additions and 3 deletions

View File

@ -390,18 +390,18 @@ self: {
}) {};
"ALUT" = callPackage
({ mkDerivation, alut, base, OpenAL, OpenGL }:
({ mkDerivation, base, freealut, OpenAL, OpenGL }:
mkDerivation {
pname = "ALUT";
version = "2.3.0.2";
sha256 = "02kfyb4g7sfjfzqlddxqbjffrj4a0gfrzkisdpbj2lw67j1gq5dp";
buildDepends = [ base OpenAL OpenGL ];
extraLibraries = [ alut ];
extraLibraries = [ freealut ];
configureFlags = [ "-fusenativewindowslibraries" ];
homepage = "https://github.com/haskell-openal/ALUT";
description = "A binding for the OpenAL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
}) { alut = null; };
}) {};
"AMI" = callPackage
({ mkDerivation, base, bytestring, containers, mtl, network