haskellPackages.irc: init at 1.0.0

This commit is contained in:
tv 2017-05-02 22:07:50 +02:00
parent 308ececd19
commit 8006120256

View File

@ -0,0 +1,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;
}