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: -- other-extensions:
build-depends: base ^>=4.13.0.0 build-depends: base ^>=4.13.0.0
, affection , affection
, stm
, sdl2
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010

View File

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