summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/DSH/default.nix
blob: 32cf21242de6e2a4ed36afbd5dba46181defb801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, csv, FerryCore, HaXml, HDBC, mtl, Pathfinder, text }:

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