2021-02-04 16:56:36 +00:00
|
|
|
{ mkDerivation, aeson, aeson-pretty, base, bytestring
|
2021-01-23 13:11:16 +00:00
|
|
|
, case-insensitive, conduit, containers, directory, feed, filepath
|
2021-02-10 14:58:59 +00:00
|
|
|
, hashable, hslogger, html-entity, http-client, irc-conduit, lens
|
|
|
|
, lrucache, lrucaching, network, optparse-applicative, random, safe
|
2021-10-19 20:51:26 +00:00
|
|
|
, lib, text, time, timerep, wreq
|
2020-12-30 08:47:57 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "brockman";
|
2022-06-01 09:15:55 +00:00
|
|
|
version = "4.0.4";
|
2020-12-30 08:47:57 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kmein";
|
|
|
|
repo = "brockman";
|
|
|
|
rev = version;
|
2022-06-01 09:15:55 +00:00
|
|
|
sha256 = "sha256-GOEEUjehFgMMf6cNpi0AP/Rz74sTDEcpKRbLD+6YEz0=";
|
2020-12-30 08:47:57 +00:00
|
|
|
};
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
executableHaskellDepends = [
|
2021-02-04 16:56:36 +00:00
|
|
|
aeson aeson-pretty base bytestring case-insensitive conduit
|
2021-02-10 14:58:59 +00:00
|
|
|
containers directory feed filepath hashable hslogger html-entity
|
2022-06-01 09:15:55 +00:00
|
|
|
http-client irc-conduit lens lrucache network
|
2021-02-10 14:58:59 +00:00
|
|
|
optparse-applicative random safe text time timerep wreq
|
2020-12-30 08:47:57 +00:00
|
|
|
];
|
2021-10-19 20:51:26 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-30 08:47:57 +00:00
|
|
|
}
|