add new dependencies

This commit is contained in:
nek0 2020-09-21 04:25:49 +02:00
parent e5e4c7a4d1
commit 3ada04c3c1
2 changed files with 4 additions and 2 deletions

View File

@ -21,5 +21,7 @@ executable pituicat
-- other-extensions:
build-depends: base ^>=4.13.0.0
, affection
, stm
, sdl2
hs-source-dirs: src
default-language: Haskell2010

View File

@ -24,14 +24,14 @@ let
license = stdenv.lib.licenses.lgpl3;
}) {};
f = { mkDerivation, base, stdenv }:
f = { mkDerivation, base, stdenv, sdl2, stm }:
mkDerivation {
pname = "pituicat";
version = "0.0.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ affection base ];
executableHaskellDepends = [ affection base sdl2 stm ];
license = stdenv.lib.licenses.gpl3;
};