Adding haskell-DSH and dependencies.

svn path=/nixpkgs/trunk/; revision=31794
This commit is contained in:
Andres Löh
2012-01-23 16:22:34 +00:00
parent 5c05e3f866
commit bbc726c86a
5 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ cabal, HaXml, mtl, parsec, TableAlgebra }:
cabal.mkDerivation (self: {
pname = "FerryCore";
version = "0.4.6.4";
sha256 = "1dxhbrmcl36dg14lyihpy8fd8sdsmawh70fykllcjk3fh7a11wgp";
buildDepends = [ HaXml mtl parsec TableAlgebra ];
meta = {
description = "Ferry Core Components";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})