This commit is contained in:
nek0 2018-06-18 20:12:36 +02:00
parent 34bcb88e2e
commit c1dba6d137
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ let
inherit (nixpkgs) pkgs;
nanovgNeko = with haskellPackages; callPackage (
{ mkDerivation, base, bytestring, c2hs, containers, GLEW, glew
{ mkDerivation, base, bytestring, c2hs, containers, glew
, hspec, inline-c, libGL, libGLU, QuickCheck, stdenv, text, vector
}:
mkDerivation {
@ -16,7 +16,7 @@ let
isExecutable = true;
doCheck = false;
libraryHaskellDepends = [ base bytestring containers text vector ];
librarySystemDepends = [ GLEW libGL libGLU ];
librarySystemDepends = [ glew libGL libGLU ];
libraryPkgconfigDepends = [ glew ];
libraryToolDepends = [ c2hs ];
testHaskellDepends = [ base containers hspec inline-c QuickCheck ];