2014-05-07 10:48:03 +01:00
|
|
|
{ cabal, async, enclosedExceptions, exceptions, liftedAsync
|
|
|
|
, liftedBase, monadControl, mtl, systemFileio, systemFilepath, text
|
|
|
|
, time, transformers, transformersBase, unixCompat
|
2012-06-28 10:32:20 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shelly";
|
2014-06-03 10:35:55 +01:00
|
|
|
version = "1.5.4";
|
|
|
|
sha256 = "1jxw3c25n7azvfyj9vark9149sk36d01pfij6lgamhjs28mb860d";
|
2012-06-28 10:32:20 +01:00
|
|
|
buildDepends = [
|
2014-05-07 10:48:03 +01:00
|
|
|
async enclosedExceptions exceptions liftedAsync liftedBase
|
|
|
|
monadControl mtl systemFileio systemFilepath text time transformers
|
|
|
|
transformersBase unixCompat
|
2012-06-28 10:32:20 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/yesodweb/Shelly.hs";
|
|
|
|
description = "shell-like (systems) programming in Haskell";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-06-28 10:32:20 +01:00
|
|
|
};
|
|
|
|
})
|