mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
haskell-hexpat: add version 0.20.2
This commit is contained in:
parent
3f50c02496
commit
f51d329343
2 changed files with 20 additions and 0 deletions
18
pkgs/development/libraries/haskell/hexpat/default.nix
Normal file
18
pkgs/development/libraries/haskell/hexpat/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ cabal, deepseq, extensibleExceptions, List, text, transformers
|
||||
, utf8String
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hexpat";
|
||||
version = "0.20.2";
|
||||
sha256 = "1v96xiys1664cdspbd9mps9m1ia4xwykzsg4z62pklqnf21wna7j";
|
||||
buildDepends = [
|
||||
deepseq extensibleExceptions List text transformers utf8String
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://haskell.org/haskellwiki/Hexpat/";
|
||||
description = "XML parser/formatter based on expat";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -908,6 +908,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
hastache = callPackage ../development/libraries/haskell/hastache {};
|
||||
|
||||
hexpat = callPackage ../development/libraries/haskell/hexpat {};
|
||||
|
||||
HTTP_4000_0_6 = callPackage ../development/libraries/haskell/HTTP/4000.0.6.nix {};
|
||||
HTTP_4000_0_9 = callPackage ../development/libraries/haskell/HTTP/4000.0.9.nix {};
|
||||
HTTP_4000_1_1 = callPackage ../development/libraries/haskell/HTTP/4000.1.1.nix {};
|
||||
|
|
Loading…
Reference in a new issue