summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wxHaskell/wx.nix
blob: 2f5779d09e16957e041b1e23eed05fd51e37113c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{cabal, stm, wxcore} :

cabal.mkDerivation (self : {
  pname = "wx";
  version = "0.12.1.6";
  sha256 = "1p0gn46gk1abin095va22n9bycxhm2cq1vyvwiypcdq7jq541lhk";
  propagatedBuildInputs = [ stm wxcore ];
  meta = {
    homepage = "http://haskell.org/haskellwiki/WxHaskell";
    description = "wxHaskell";
    license = "LGPL";
  };
})