2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, convertible, csv, FerryCore, HaXml, HDBC, json, mtl
|
2012-01-23 17:22:34 +01:00
|
|
|
, Pathfinder, syb, text, xhtml
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "DSH";
|
2012-05-10 12:28:49 +02:00
|
|
|
version = "0.7.8.1";
|
|
|
|
sha256 = "1yz8rh3hkqc465slfzi7jqhjd1xrmcghjxl7zprxw082p2qvj8g5";
|
2012-01-23 17:22:34 +01:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
convertible csv FerryCore HaXml HDBC json mtl Pathfinder syb text
|
|
|
|
xhtml
|
2012-01-23 17:22:34 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
description = "Database Supported Haskell";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-23 17:22:34 +01:00
|
|
|
};
|
|
|
|
})
|