about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HaXml/default.nix
blob: 76167c0a265541dd9c90d8e80ae68ea58582a82f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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
    ];
  };
})