3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
477 B
Nix
15 lines
477 B
Nix
{ cabal, csv, FerryCore, HaXml, HDBC, mtl, Pathfinder, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "DSH";
|
|
version = "0.8.2.3";
|
|
sha256 = "0d5jh1vxjx3874rgwvxjm00lj3vvp8ggz2c54x6ymhmgav3pd8vy";
|
|
buildDepends = [ csv FerryCore HaXml HDBC mtl Pathfinder text ];
|
|
meta = {
|
|
description = "Database Supported Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|