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

27 lines
874 B
Nix
Raw Normal View History

2021-01-07 22:14:47 +00:00
{ mkDerivation, aeson, aeson-pretty, base, bloomfilter, bytestring
2021-01-23 13:11:16 +00:00
, case-insensitive, conduit, containers, directory, feed, filepath
, hslogger, 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-23 13:11:16 +00:00
version = "3.2.3";
2020-12-30 08:47:57 +00:00
src = fetchFromGitHub {
owner = "kmein";
repo = "brockman";
rev = version;
2021-01-23 13:11:16 +00:00
sha256 = "1qbjbf0l1ikfzmvky4cnvv7nlcwi2in4afliifh618j0a4f7j427";
2020-12-30 08:47:57 +00:00
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
2021-01-23 13:11:16 +00:00
aeson aeson-pretty base bloomfilter bytestring case-insensitive
conduit containers directory feed filepath hslogger html-entity
http-client 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;
}