2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, text }:
|
2009-07-18 16:25:28 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 16:25:28 +01:00
|
|
|
pname = "xml";
|
2013-04-01 17:47:19 +01:00
|
|
|
version = "1.3.13";
|
|
|
|
sha256 = "04xq2ma2if5gqz16bjrxwigh4vzw6m8i2zk11s5qg3d4z370fdn3";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ text ];
|
2009-07-18 16:25:28 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://code.galois.com";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "A simple XML library";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 16:25:28 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|