2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, pathPieces, text, vector }:
|
2012-02-10 12:32:48 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "yesod-routes";
|
|
|
|
version = "0.0.1";
|
|
|
|
sha256 = "19bnww5idxr0j2l8g838idxkhhn73bhdz0bnvglinv7163fy8xhl";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal pathPieces text vector ];
|
2012-02-10 12:32:48 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
|
|
|
description = "Efficient routing for Yesod";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-02-13 10:02:26 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-02-10 12:32:48 +01:00
|
|
|
};
|
|
|
|
})
|