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