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

27 lines
888 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";
2023-03-26 09:29:42 +00:00
version = "5.1.1";
2020-12-30 08:47:57 +00:00
src = fetchFromGitHub {
owner = "kmein";
repo = "brockman";
rev = version;
2023-03-26 09:29:42 +00:00
sha256 = "sha256-5/2Xjh6YqV3+kkQr8CiXay9Dd8IAnL8D4dc8afnlki4=";
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
2022-06-01 09:15:55 +00:00
http-client irc-conduit lens lrucache network
2021-02-10 14:58:59 +00:00
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
}