2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, filepath, polyparse, random }:
|
2011-08-13 14:57:19 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "HaXml";
|
2013-05-16 12:02:01 +01:00
|
|
|
version = "1.24";
|
|
|
|
sha256 = "18kvavqa84k2121ppxngn39fjz4w63chngb3255w1fhdz13v3ydn";
|
2011-08-13 14:57:19 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ filepath polyparse random ];
|
2011-08-13 14:57:19 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.cs.york.ac.uk/fp/HaXml/";
|
|
|
|
description = "Utilities for manipulating XML documents";
|
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-13 14:57:19 +01:00
|
|
|
};
|
|
|
|
})
|