add new dependencies
This commit is contained in:
parent
e5e4c7a4d1
commit
3ada04c3c1
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue