nixpkgs/pkgs/development/libraries/haskell/yesod-routes/default.nix
Peter Simons ac69747aa8 Regenerated all Haskell packages with the latest version of cabal2nix.
svn path=/nixpkgs/trunk/; revision=32292
2012-02-14 17:00:37 +00:00

19 lines
544 B
Nix

{ cabal, Cabal, pathPieces, text, vector }:
cabal.mkDerivation (self: {
pname = "yesod-routes";
version = "0.0.1";
sha256 = "19bnww5idxr0j2l8g838idxkhhn73bhdz0bnvglinv7163fy8xhl";
buildDepends = [ Cabal pathPieces text vector ];
meta = {
homepage = "http://www.yesodweb.com/";
description = "Efficient routing for Yesod";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})