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

27 lines
900 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-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";
2021-09-05 16:38:13 +00:00
version = "4.0.1";
2020-12-30 08:47:57 +00:00
src = fetchFromGitHub {
owner = "kmein";
repo = "brockman";
rev = version;
2021-09-05 16:38:13 +00:00
sha256 = "0hppgban8hfyhn4c8qgm8j7ml6jaa35pjgrv3k3q27ln71wnr8rz";
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
http-client irc-conduit lens lrucache lrucaching network
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
}