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