hackage-packages.nix: re-generate to fix ALUT
This commit is contained in:
parent
4cd9c8c3ae
commit
f49fa1f20b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue