add new dependency
This commit is contained in:
parent
0714859e5a
commit
31976ff185
2 changed files with 5 additions and 4 deletions
|
@ -31,6 +31,7 @@ executable renderer-tutorial
|
|||
, JuicyPixels
|
||||
, JuicyPixels-extra
|
||||
, StateVar
|
||||
, lens
|
||||
other-modules: BindableClass
|
||||
, BufferClass
|
||||
, VertexBuffer
|
||||
|
|
|
@ -5,8 +5,8 @@ let
|
|||
inherit (nixpkgs) pkgs;
|
||||
|
||||
f = { mkDerivation, base, bytestring, JuicyPixels
|
||||
, JuicyPixels-extra, linear, monad-loops, OpenGL, OpenGLRaw, random
|
||||
, sdl2, StateVar, stdenv, vector
|
||||
, JuicyPixels-extra, lens, linear, monad-loops, OpenGL, OpenGLRaw
|
||||
, random, sdl2, StateVar, stdenv, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "renderer-tutorial";
|
||||
|
@ -15,8 +15,8 @@ let
|
|||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
executableHaskellDepends = [
|
||||
base bytestring JuicyPixels JuicyPixels-extra linear monad-loops
|
||||
OpenGL OpenGLRaw random sdl2 StateVar vector
|
||||
base bytestring JuicyPixels JuicyPixels-extra lens linear
|
||||
monad-loops OpenGL OpenGLRaw random sdl2 StateVar vector
|
||||
];
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue