2012-06-28 11:32:20 +02:00
|
|
|
{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shelly";
|
2012-11-01 10:08:29 +01:00
|
|
|
version = "0.14.2.2";
|
|
|
|
sha256 = "10wnmbs8bfj5m7z8gxj4z5ncvrx55br4mcfgs9x2w1avjzq5yhq3";
|
2012-06-28 11:32:20 +02:00
|
|
|
buildDepends = [
|
|
|
|
mtl systemFileio systemFilepath text time unixCompat
|
|
|
|
];
|
2012-09-20 14:34:52 +02:00
|
|
|
jailbreak = true;
|
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;
|
2012-06-28 14:45:11 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-06-28 11:32:20 +02:00
|
|
|
};
|
|
|
|
})
|