summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/DSH/default.nix
blob: 3275db0e0d8bb4b7e99dfa12569f29c286a4a3e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, convertible, csv, FerryCore, HaXml, HDBC, json, mtl
, Pathfinder, syb, text, xhtml
}:

cabal.mkDerivation (self: {
  pname = "DSH";
  version = "0.7.8.2";
  sha256 = "1rs42c05q4s46a1a03srzdq0aijwalhilzifc8ryq4qwjgh7vkwz";
  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 ];
  };
})