diff --git a/shell.nix b/shell.nix index eb3df2a..7004496 100644 --- a/shell.nix +++ b/shell.nix @@ -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 ];