2014-02-02 20:16:13 +01:00
|
|
|
{ cabal, async, mtl, systemFileio, systemFilepath, text, time
|
|
|
|
, unixCompat
|
2012-06-28 11:32:20 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shelly";
|
2014-03-26 09:51:00 +01:00
|
|
|
version = "1.5.2";
|
|
|
|
sha256 = "1iyn3xxmqbrx6xfay364m2qgflscmz9crr051jpzg0b629b8wssa";
|
2012-06-28 11:32:20 +02:00
|
|
|
buildDepends = [
|
2014-02-02 20:16:13 +01:00
|
|
|
async mtl systemFileio systemFilepath text time unixCompat
|
2012-06-28 11:32:20 +02: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-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-06-28 11:32:20 +02:00
|
|
|
};
|
|
|
|
})
|