2013-07-01 09:04:05 +00:00
|
|
|
{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
|
2012-06-28 09:32:20 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shelly";
|
2013-07-10 07:20:35 +00:00
|
|
|
version = "1.3.0.6";
|
|
|
|
sha256 = "0sm55f02cm89m8szhf9zb2jww86amzd6wdk44b3cqr7aza08clvj";
|
2012-06-28 09:32:20 +00:00
|
|
|
buildDepends = [
|
|
|
|
mtl systemFileio systemFilepath text time unixCompat
|
|
|
|
];
|
|
|
|
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 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-06-28 09:32:20 +00:00
|
|
|
};
|
|
|
|
})
|