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

cabal.mkDerivation (self : {
  pname = "wx";
  version = "0.12.1.6";
  sha256 = "1p0gn46gk1abin095va22n9bycxhm2cq1vyvwiypcdq7jq541lhk";
  propagatedBuildInputs = [stm wxcore];
  meta = {
    description = "wxHaskell";
  };
})