summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/brockman.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2021-02-04 19:21:42 +0100
committerlassulus <lassulus@lassul.us>2021-02-04 19:21:42 +0100
commit61305cb1e2d93f72d49af7e51419ab77899cd54e (patch)
tree6dcdc66fba39f13253de9812cd6a98bc664a5c78 /krebs/5pkgs/haskell/brockman.nix
parentf21e8d00ad99f7ba47864c97222cb8f9b026ef46 (diff)
brockman: move to folder
Diffstat (limited to 'krebs/5pkgs/haskell/brockman.nix')
-rw-r--r--krebs/5pkgs/haskell/brockman.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/krebs/5pkgs/haskell/brockman.nix b/krebs/5pkgs/haskell/brockman.nix
deleted file mode 100644
index aec89b7a..00000000
--- a/krebs/5pkgs/haskell/brockman.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ mkDerivation, aeson, aeson-pretty, base, bytestring
-, case-insensitive, conduit, containers, directory, feed, filepath
-, hslogger, html-entity, http-client, irc-conduit, lens, lrucache
-, network, optparse-applicative, random, safe, stdenv, text, time
-, timerep, wreq
-, fetchFromGitHub
-}:
-mkDerivation rec {
- pname = "brockman";
- version = "3.2.4";
- src = fetchFromGitHub {
- owner = "kmein";
- repo = "brockman";
- rev = version;
- sha256 = "1jh2i3rxbw8x0p5xs9ph95ixpsa6h6qm0msjb9xqnw9j8by2fkk2";
- };
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- aeson aeson-pretty base bytestring case-insensitive conduit
- containers directory feed filepath hslogger html-entity http-client
- irc-conduit lens lrucache network optparse-applicative random safe
- text time timerep wreq
- ];
- license = stdenv.lib.licenses.mit;
-}