2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, binary, mtl, syb, sybWithClass, sybWithClassInstancesText
|
|
|
|
, text, time
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2010-04-15 18:10:42 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 18:23:35 +00:00
|
|
|
pname = "happstack-data";
|
2012-02-09 12:54:00 +00:00
|
|
|
version = "6.0.1";
|
|
|
|
sha256 = "0v2ln4mdnild72p02mzjn8mn5srvjixsjqjgkdqzshvxjnnm95l8";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
binary mtl syb sybWithClass sybWithClassInstancesText text time
|
2011-08-07 18:23:35 +00:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://happstack.com";
|
|
|
|
description = "Happstack data manipulation libraries";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 18:23:35 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-09 23:00:20 +00:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2010-09-07 12:58:07 +00:00
|
|
|
];
|
2011-08-07 18:23:35 +00:00
|
|
|
};
|
2010-04-15 18:10:42 +00:00
|
|
|
})
|