2021-01-07 22:14:47 +00:00
|
|
|
{ mkDerivation, aeson, aeson-pretty, base, bloomfilter, bytestring
|
|
|
|
, conduit, containers, directory, feed, filepath, hslogger
|
|
|
|
, http-client, irc-conduit, lens, network, optparse-applicative
|
|
|
|
, random, safe, stdenv, text, wreq
|
2020-12-30 08:47:57 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "brockman";
|
2021-01-08 16:47:38 +00:00
|
|
|
version = "1.5.6";
|
2020-12-30 08:47:57 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kmein";
|
|
|
|
repo = "brockman";
|
|
|
|
rev = version;
|
2021-01-08 16:47:38 +00:00
|
|
|
sha256 = "18nsqdwxilvwnaqcfna47pa8hnxm79djq66bi5c801bc5vcqkclk";
|
2020-12-30 08:47:57 +00:00
|
|
|
};
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
executableHaskellDepends = [
|
2021-01-07 22:14:47 +00:00
|
|
|
aeson aeson-pretty base bloomfilter bytestring conduit containers
|
|
|
|
directory feed filepath hslogger http-client irc-conduit lens
|
|
|
|
network optparse-applicative random safe text wreq
|
2020-12-30 08:47:57 +00:00
|
|
|
];
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
}
|