nixpkgs/pkgs/development/libraries/haskell/haxr/default.nix
Peter Simons f6374fbc5b Add recent versions of the Haskell libraries HTTP, HaXml, haxr, and haxr-th. Unfortunately, the latter library doesn't build successfully because of the following error:
Setup: ../LICENSE: copyFile: does not exist (No such file or directory)

I'm not sure where this comes from. Also, it seems that passing haxr-th the
library haxr as a build input doesn't suffice; it also needs to be passed the
libraries that haxr depends on to configure successfully. Something isn't
right. Andreas, do you know how to fix this?

svn path=/nixpkgs/trunk/; revision=12722
2008-08-26 12:50:03 +00:00

13 lines
311 B
Nix

{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];
})