2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, hspec, HUnit, pathPieces, text, vector }:
|
2012-02-10 11:32:48 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "yesod-routes";
|
2013-12-14 10:30:19 +00:00
|
|
|
version = "1.2.0.3";
|
|
|
|
sha256 = "0p2640bbsx1lmxd0wq6qwicp6rbh1c54hjb6kiaczj63yahn04y3";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ pathPieces text vector ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ hspec HUnit pathPieces text ];
|
2012-02-10 11:32:48 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
|
|
|
description = "Efficient routing for Yesod";
|
2012-04-05 17:51:59 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2012-02-10 11:32:48 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-10 11:32:48 +00:00
|
|
|
};
|
|
|
|
})
|