summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/xml-types/default.nix
blob: 721d49dc5889c4e27ae0bde0a91c62cc2fe07183 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, text }:

cabal.mkDerivation (self: {
  pname = "xml-types";
  version = "0.3.1";
  sha256 = "0ffmmidb9a1hqfbmvjxjvij2wfrqqlyjc7m7n81czrcrrsmyc1kc";
  buildDepends = [ text ];
  meta = {
    homepage = "https://john-millikin.com/software/haskell-xml/";
    description = "Basic types for representing XML";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})