2012-06-28 11:32:20 +02:00
|
|
|
{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shelly";
|
2012-07-02 10:44:37 +02:00
|
|
|
version = "0.12.2";
|
|
|
|
sha256 = "0nhycisk6jc3mqd2xqcxxgfqsqm8vp5k4g45gdljalb87rqvqkkv";
|
2012-06-28 11:32:20 +02: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;
|
2012-06-28 14:45:11 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-06-28 11:32:20 +02:00
|
|
|
};
|
|
|
|
})
|