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

27 lines
910 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
, stdenv, text, time, timerep, wreq
2020-12-30 08:47:57 +00:00
, fetchFromGitHub
}:
mkDerivation rec {
pname = "brockman";
2021-03-19 07:58:33 +00:00
version = "3.4.3";
2020-12-30 08:47:57 +00:00
src = fetchFromGitHub {
owner = "kmein";
repo = "brockman";
rev = version;
2021-03-19 07:58:33 +00:00
sha256 = "0s8rvsj5m70wijl8j00fisz6c1kms7kx12lxfgk63mrx2ldp1fb4";
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
];
license = stdenv.lib.licenses.mit;
}