summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-07 21:59:55 +0000
committerPeter Simons <simons@cryp.to>2011-08-07 21:59:55 +0000
commitd5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c (patch)
tree318e88322ae4af0a6aab8f222a5a2983110c317b /pkgs/development/libraries
parentc1eb520fefa25059b2138cc95b23252a7dd455b4 (diff)
downloadnixlib-d5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c.tar
nixlib-d5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c.tar.gz
nixlib-d5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c.tar.bz2
nixlib-d5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c.tar.lz
nixlib-d5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c.tar.xz
nixlib-d5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c.tar.zst
nixlib-d5fbf640a3fab64ed2fbfdb69b1f153ea35cc64c.zip
haskell-haxr-th: updated to version 3000.5
Unfortunately, even the latest version will not compile because it
expects an obsolete version of the base libraries.

svn path=/nixpkgs/trunk/; revision=28302
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/haskell/haxr-th/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/libraries/haskell/haxr-th/default.nix b/pkgs/development/libraries/haskell/haxr-th/default.nix
index 207da9831afc..fbf4075fe429 100644
--- a/pkgs/development/libraries/haskell/haxr-th/default.nix
+++ b/pkgs/development/libraries/haskell/haxr-th/default.nix
@@ -1,11 +1,15 @@
-{cabal, haxr, HaXml, HTTP}:
+{cabal, haxr} :
 
 cabal.mkDerivation (self : {
   pname = "haxr-th";
-  version = "3000.0.0";
-  sha256 = "00wqhri2fljjds6rwws0hgk7z27ii1lgvxr8db2li0780q5fa6ic";
+  version = "3000.5";
+  sha256 = "1h1g4r7c5k3rja49ip4m21f2sscn06xjxharnlyazvvs6mzfysif";
+  propagatedBuildInputs = [ haxr ];
   meta = {
+    homepage = "http://www.haskell.org/haxr/";
     description = "Automatic deriving of XML-RPC structs for Haskell records.";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [ self.stdenv.lib.maintainers.simons ];
   };
-  propagatedBuildInputs = [HaXml HTTP haxr];
 })