c07854ace4
- DSH: updated to version 0.7.8.1 - alex: updated to versino 3.0.2 - certificate: updated to version 1.2.2 - language-c: updated to version 0.4.2 - xhtml: updated to version 3000.2.1 Also, downgraded GHC 7.4.1 environment to use mtl 2.0 and transformers 2.0 to avoid lots of build errors, i.e. with monad-par. svn path=/nixpkgs/trunk/; revision=34042
20 lines
546 B
Nix
20 lines
546 B
Nix
{ cabal, convertible, csv, FerryCore, HaXml, HDBC, json, mtl
|
|
, Pathfinder, syb, text, xhtml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "DSH";
|
|
version = "0.7.8.1";
|
|
sha256 = "1yz8rh3hkqc465slfzi7jqhjd1xrmcghjxl7zprxw082p2qvj8g5";
|
|
buildDepends = [
|
|
convertible csv FerryCore HaXml HDBC json mtl Pathfinder syb text
|
|
xhtml
|
|
];
|
|
meta = {
|
|
description = "Database Supported Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|