summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/haxr/default.nix
blob: 002b6ff7e61809dd074c295b7313edcb80ee19c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, HaXml, HTTP}:

cabal.mkDerivation (self : {
  pname = "haxr";
  version = "3000.0.1";
  sha256 = "1sppfd8qyqggfh5m8phxdn40x17g97q6j3a8d5wspy7kcmg2qaci";
  meta = {
    description = "a Haskell library for writing XML-RPC client and server applications";
  };
  propagatedBuildInputs = [HaXml HTTP];
})