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

27 lines
868 B
Nix
Raw Normal View History

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-04 16:56:36 +00:00
, hslogger, html-entity, http-client, irc-conduit, lens, lrucache
, network, optparse-applicative, random, safe, stdenv, text, time
, timerep, wreq
2020-12-30 08:47:57 +00:00
, fetchFromGitHub
}:
mkDerivation rec {
pname = "brockman";
2021-02-04 16:56:36 +00:00
version = "3.2.4";
2020-12-30 08:47:57 +00:00
src = fetchFromGitHub {
owner = "kmein";
repo = "brockman";
rev = version;
2021-02-04 16:56:36 +00:00
sha256 = "1jh2i3rxbw8x0p5xs9ph95ixpsa6h6qm0msjb9xqnw9j8by2fkk2";
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
containers directory feed filepath hslogger html-entity http-client
irc-conduit lens lrucache network optparse-applicative random safe
text time timerep wreq
2020-12-30 08:47:57 +00:00
];
license = stdenv.lib.licenses.mit;
}