add new dependency

This commit is contained in:
nek0 2020-08-10 12:49:57 +02:00
parent 0714859e5a
commit 31976ff185
2 changed files with 5 additions and 4 deletions

View file

@ -31,6 +31,7 @@ executable renderer-tutorial
, JuicyPixels , JuicyPixels
, JuicyPixels-extra , JuicyPixels-extra
, StateVar , StateVar
, lens
other-modules: BindableClass other-modules: BindableClass
, BufferClass , BufferClass
, VertexBuffer , VertexBuffer

View file

@ -5,8 +5,8 @@ let
inherit (nixpkgs) pkgs; inherit (nixpkgs) pkgs;
f = { mkDerivation, base, bytestring, JuicyPixels f = { mkDerivation, base, bytestring, JuicyPixels
, JuicyPixels-extra, linear, monad-loops, OpenGL, OpenGLRaw, random , JuicyPixels-extra, lens, linear, monad-loops, OpenGL, OpenGLRaw
, sdl2, StateVar, stdenv, vector , random, sdl2, StateVar, stdenv, vector
}: }:
mkDerivation { mkDerivation {
pname = "renderer-tutorial"; pname = "renderer-tutorial";
@ -15,8 +15,8 @@ let
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
executableHaskellDepends = [ executableHaskellDepends = [
base bytestring JuicyPixels JuicyPixels-extra linear monad-loops base bytestring JuicyPixels JuicyPixels-extra lens linear
OpenGL OpenGLRaw random sdl2 StateVar vector monad-loops OpenGL OpenGLRaw random sdl2 StateVar vector
]; ];
license = stdenv.lib.licenses.gpl3; license = stdenv.lib.licenses.gpl3;
}; };