FeedMonad/FeedMonad/default.nix

20 lines
562 B
Nix
Raw Normal View History

2021-11-11 20:55:29 +02:00
{ mkDerivation, acid-state, base, bytestring, containers, dyre
2021-11-11 19:04:48 +02:00
, http-client, http-client-tls, lens, lib, mtl, safecopy, servant
2021-11-11 20:55:29 +02:00
, servant-server, text, xdg-basedir
2021-11-03 13:05:49 +02:00
}:
mkDerivation {
2021-11-11 19:04:48 +02:00
pname = "FeedMonad";
2021-11-03 13:05:49 +02:00
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
2021-11-11 20:55:29 +02:00
acid-state base bytestring containers dyre http-client
http-client-tls lens mtl safecopy servant servant-server text
xdg-basedir
2021-11-03 13:05:49 +02:00
];
executableHaskellDepends = [ base ];
license = "unknown";
hydraPlatforms = lib.platforms.none;
}