nixpkgs/pkgs/development/libraries/haskell/happstack/happstack-data.nix
Andres Löh 52fe24049c Added happstack and dependencies.
svn path=/nixpkgs/trunk/; revision=21107
2010-04-15 18:10:42 +00:00

14 lines
468 B
Nix

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