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-06-08 21:11:01 +00:00
|
|
|
version = "1.2.0.1";
|
|
|
|
sha256 = "0pp7g3ccd0swh1j62am1vg9r2gh65jcci5w2n4r42sqzfnql0i8z";
|
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 16:51:59 +00:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2012-02-10 11:32:48 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-10 11:32:48 +00:00
|
|
|
};
|
|
|
|
})
|