f6374fbc5b
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
12 lines
314 B
Nix
12 lines
314 B
Nix
{cabal, haxr, HaXml, HTTP}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "haxr-th";
|
|
version = "3000.0.0";
|
|
sha256 = "00wqhri2fljjds6rwws0hgk7z27ii1lgvxr8db2li0780q5fa6ic";
|
|
meta = {
|
|
description = "Automatic deriving of XML-RPC structs for Haskell records.";
|
|
};
|
|
propagatedBuildInputs = [HaXml HTTP haxr];
|
|
})
|