From c1dba6d1371e2103d01cd7ea0ecdb230a8c5e343 Mon Sep 17 00:00:00 2001 From: nek0 Date: Mon, 18 Jun 2018 20:12:36 +0200 Subject: [PATCH] fix deps --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ];