summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wxHaskell/wx.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-13 23:38:23 +0000
committerPeter Simons <simons@cryp.to>2011-08-13 23:38:23 +0000
commitb0b297ecb706e560a79911ef74e433939fb66291 (patch)
tree704eb53dceb7a615abe0c1a3b8f022c4b516114b /pkgs/development/libraries/haskell/wxHaskell/wx.nix
parent9a7839daaf9ce6a5749be689b420b6fcf6d451c0 (diff)
Regenerated haskell-wx and haskell-wxdirect expressions; no functional change.
svn path=/nixpkgs/trunk/; revision=28550
Diffstat (limited to 'pkgs/development/libraries/haskell/wxHaskell/wx.nix')
-rw-r--r--pkgs/development/libraries/haskell/wxHaskell/wx.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/libraries/haskell/wxHaskell/wx.nix b/pkgs/development/libraries/haskell/wxHaskell/wx.nix
index 2f5779d09e169..ec4511ee481e7 100644
--- a/pkgs/development/libraries/haskell/wxHaskell/wx.nix
+++ b/pkgs/development/libraries/haskell/wxHaskell/wx.nix
@@ -1,13 +1,18 @@
-{cabal, stm, wxcore} :
+{ cabal, stm, wxcore }:
 
-cabal.mkDerivation (self : {
+cabal.mkDerivation (self: {
   pname = "wx";
   version = "0.12.1.6";
   sha256 = "1p0gn46gk1abin095va22n9bycxhm2cq1vyvwiypcdq7jq541lhk";
-  propagatedBuildInputs = [ stm wxcore ];
+  buildDepends = [ stm wxcore ];
   meta = {
     homepage = "http://haskell.org/haskellwiki/WxHaskell";
     description = "wxHaskell";
     license = "LGPL";
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
   };
 })