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";
|
2014-01-13 14:40:07 +00:00
|
|
|
version = "1.2.0.6";
|
|
|
|
sha256 = "0hd2f2w9pb865fn9qijh3j73sc1x7gzd4c0q5mgjy9lh9hd4kzix";
|
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
|
|
|
};
|
|
|
|
})
|