summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell-overrides/irc.nix
blob: b20885572bc0814a295dcce38f862b34af7a077f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
}