2011-08-09 23:00:20 +00:00
|
|
|
{ cabal, binary, mtl, syb, sybWithClass, sybWithClassInstancesText
|
|
|
|
, text, time
|
|
|
|
}:
|
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";
|
|
|
|
version = "6.0.0";
|
|
|
|
sha256 = "1wdvylqgy3iw41ksw2ys4f0vyak8sbk6gginljvz07rrh04klyhl";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
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
|
|
|
})
|