fb37aed285
svn path=/nixpkgs/trunk/; revision=28917
21 lines
555 B
Nix
21 lines
555 B
Nix
{ cabal, polyparse, random }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HaXml";
|
|
version = "1.22.5";
|
|
sha256 = "1ckmi8iwyaid4mcnh8117s9kq45f8r7sidh6dbhzbj0dl29rrkbz";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ polyparse random ];
|
|
meta = {
|
|
homepage = "http://www.cs.york.ac.uk/fp/HaXml/";
|
|
description = "Utilities for manipulating XML documents";
|
|
license = "LGPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|