nixpkgs/pkgs/development/libraries/haskell/happstack/happstack-data.nix
Andres Löh 923d30959f Added yst; updated happstack, pandoc, gitit and dependencies.
svn path=/nixpkgs/trunk/; revision=23670
2010-09-07 12:58:07 +00:00

18 lines
557 B
Nix

{cabal, mtl, sybWithClass, sybWithClassInstancesText, HaXml,
happstackUtil, binary, text}:
cabal.mkDerivation (self : {
pname = "happstack-data";
version = "0.5.0.2";
sha256 = "03795c24acc2268f39d38f18dd6cbfb92893f7de88b0443219d582a1eabdacd5";
propagatedBuildInputs = [
mtl sybWithClass sybWithClassInstancesText HaXml
happstackUtil binary text
];
meta = {
description = "Happstack data manipulation libraries";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})