2012-07-14 11:14:39 +02:00
|
|
|
{ cabal, base64Bytestring, blazeBuilder, HaXml, HTTP, mtl, network
|
|
|
|
, time, utf8String
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2008-08-26 14:50:03 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2008-08-26 14:50:03 +02:00
|
|
|
pname = "haxr";
|
2012-07-14 11:14:39 +02:00
|
|
|
version = "3000.9.0.1";
|
|
|
|
sha256 = "106hw8ysjx12dvwij4ld6n54mxj2yl1p7iihp2fwz50v50mz6102";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-07-14 11:14:39 +02:00
|
|
|
base64Bytestring blazeBuilder HaXml HTTP mtl network time
|
|
|
|
utf8String
|
2011-08-08 00:00:12 +02:00
|
|
|
];
|
2008-08-26 14:50:03 +02:00
|
|
|
meta = {
|
2011-08-08 00:00:12 +02:00
|
|
|
homepage = "http://www.haskell.org/haskellwiki/HaXR";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "XML-RPC client and server library";
|
2011-08-08 00:00:12 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2008-08-26 14:50:03 +02:00
|
|
|
};
|
|
|
|
})
|