2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, blazeBuilder, httpTypes, mtl, network, parsec, text
|
2012-01-19 14:46:04 +00:00
|
|
|
, 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-23 11:33:33 +00:00
|
|
|
version = "0.27.1";
|
|
|
|
sha256 = "0rbl57qnn908hwfhj14m8z11pscrv44rlg7c9y9rm6jvwy4v58qz";
|
2012-01-19 14:46:04 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
blazeBuilder httpTypes mtl network parsec text utf8String
|
2012-01-19 14:46:04 +00:00
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|