2012-01-19 14:46:04 +00:00
|
|
|
{ cabal, blazeBuilder, httpTypes, mtl, network, parsec, text
|
|
|
|
, utf8String
|
|
|
|
}:
|
2010-07-21 09:41:12 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-21 09:41:12 +00:00
|
|
|
pname = "web-routes";
|
2012-02-01 10:40:04 +00:00
|
|
|
version = "0.26.3";
|
|
|
|
sha256 = "1ldi4gjraga57qj9drknwp19vmy30fhcp6vw3y7xqcrarvp5n2mx";
|
2012-01-19 14:46:04 +00:00
|
|
|
buildDepends = [
|
|
|
|
blazeBuilder httpTypes mtl network parsec text utf8String
|
|
|
|
];
|
2010-07-21 09:41:12 +00:00
|
|
|
meta = {
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Library for maintaining correctness and composability of URLs within an application";
|
2011-08-07 22:01:57 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 22:01:57 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-09 23:00:20 +00:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 22:01:57 +00:00
|
|
|
];
|
2010-07-21 09:41:12 +00:00
|
|
|
};
|
|
|
|
})
|