FeedMonad/FeedMonad/default.nix

16 lines
465 B
Nix
Raw Normal View History

2021-11-11 22:08:46 +02:00
{ mkDerivation, acid-state, base, bytestring, containers
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 = ./.;
libraryHaskellDepends = [
2021-11-11 22:08:46 +02:00
acid-state base bytestring containers http-client http-client-tls
lens mtl safecopy servant servant-server text xdg-basedir
2021-11-03 13:05:49 +02:00
];
license = "unknown";
hydraPlatforms = lib.platforms.none;
}