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

View File

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