diff options
Diffstat (limited to 'krebs/5pkgs/haskell')
-rw-r--r-- | krebs/5pkgs/haskell/brockman.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/krebs/5pkgs/haskell/brockman.nix b/krebs/5pkgs/haskell/brockman.nix new file mode 100644 index 000000000..c6d01edc7 --- /dev/null +++ b/krebs/5pkgs/haskell/brockman.nix @@ -0,0 +1,24 @@ +{ mkDerivation, aeson, aeson-pretty, base, bloomfilter, bytestring +, conduit, containers, directory, feed, filepath, hslogger +, html-entity, http-client, irc-conduit, lens, network +, optparse-applicative, random, safe, stdenv, text, wreq +, fetchFromGitHub +}: +mkDerivation rec { + pname = "brockman"; + version = "3.0.0"; + src = fetchFromGitHub { + owner = "kmein"; + repo = "brockman"; + rev = version; + sha256 = "08yla9q2mjd7znpasfwsdqzc3dp2vcvg53x9p4vlx4g7jr3dw3yp"; + }; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson aeson-pretty base bloomfilter bytestring conduit containers + directory feed filepath hslogger html-entity http-client + irc-conduit lens network optparse-applicative random safe text wreq + ]; + license = stdenv.lib.licenses.mit; +} |