summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell-overrides/irc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'krebs/5pkgs/haskell-overrides/irc.nix')
-rw-r--r--krebs/5pkgs/haskell-overrides/irc.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/krebs/5pkgs/haskell-overrides/irc.nix b/krebs/5pkgs/haskell-overrides/irc.nix
deleted file mode 100644
index b20885572..000000000
--- a/krebs/5pkgs/haskell-overrides/irc.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ mkDerivation, async, base, bytestring, fetchgit, network
-, optparse-applicative, stdenv, text
-}:
-mkDerivation {
- pname = "irc";
- version = "1.0.0";
- src = fetchgit {
- url = "http://cgit.krebsco.de/irc";
- sha256 = "174ywhvidybg49m4b43q2304izwbx3s7bvipk9g399zjyb392r8f";
- rev = "7225d47e9c1f4c7032ad55fbe1d9f33ff205549c";
- };
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- async base bytestring network optparse-applicative text
- ];
- license = stdenv.lib.licenses.mit;
-}