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, filepath, temporary, time, transformers }:
cabal.mkDerivation (self: {
pname = "shellmate";
version = "0.1.6";
sha256 = "17fpl0h58cw5hp6jzrajkl629mw2c6x15cmlcbdxqk9xlxqrg4hr";
buildDepends = [ filepath temporary time transformers ];
meta = {
homepage = "http://github.com/valderman/shellmate";
description = "Simple interface for shell scripting in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})