nixpkgs/pkgs/development/libraries/haskell/web-routes-quasi/default.nix
Andres Löh 1b603fe157 Added yesod-core.
svn path=/nixpkgs/trunk/; revision=27650
2011-07-07 21:40:35 +00:00

14 lines
399 B
Nix

{cabal, text}:
cabal.mkDerivation (self : {
pname = "web-routes-quasi";
version = "0.7.0.1";
sha256 = "1khrf5kbw285hddyyzcz2mx4qpz46mdmlm31jszag2ay64gw35gw";
propagatedBuildInputs = [text];
meta = {
description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})