Added haskell packages: hdaemonize, ixset, shellmate, tables and webdriver.

This commit is contained in:
Aycan iRiCAN
2014-06-25 03:02:50 +03:00
parent cc0c939773
commit 8e4e15804c
6 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, extensibleExceptions, filepath, hsyslog, mtl }:
cabal.mkDerivation (self: {
pname = "hdaemonize";
version = "0.4.5.0";
sha256 = "1b9aic08pgmp95qy74qcrmq9dn33k6knycy7mn1dg8c5svmchb2w";
buildDepends = [ extensibleExceptions filepath hsyslog mtl ];
meta = {
homepage = "http://github.com/madhadron/hdaemonize";
description = "Library to handle the details of writing daemons for UNIX";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})