stockholm/krebs/5pkgs/haskell/brockman.nix

27 lines
839 B
Nix
Raw Normal View History

2021-01-07 22:14:47 +00:00
{ mkDerivation, aeson, aeson-pretty, base, bloomfilter, bytestring
, conduit, containers, directory, feed, filepath, hslogger
2021-01-12 21:38:52 +00:00
, html-entity, http-client, irc-conduit, lens, network
2021-01-20 18:55:52 +00:00
, optparse-applicative, random, safe, stdenv, text, time, timerep
, wreq
2020-12-30 08:47:57 +00:00
, fetchFromGitHub
}:
mkDerivation rec {
pname = "brockman";
2021-01-20 18:55:52 +00:00
version = "3.2.0";
2020-12-30 08:47:57 +00:00
src = fetchFromGitHub {
owner = "kmein";
repo = "brockman";
rev = version;
2021-01-20 18:55:52 +00:00
sha256 = "0vvps5czl6qcpfyrm2a6vj00hdh941wj4zb2bd9jlgf9mfikqm77";
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
2021-01-12 21:38:52 +00:00
directory feed filepath hslogger html-entity http-client
2021-01-20 18:55:52 +00:00
irc-conduit lens network optparse-applicative random safe text time
timerep wreq
2020-12-30 08:47:57 +00:00
];
license = stdenv.lib.licenses.mit;
}