5b8103b57c
- wx: updated to version 0.90 - wxcore: updated to version 0.90 - wxdirect: updated to version 0.90 - wxc: this project contains no native Haskell code -- only C++ glue -- so we cannot run Haddock on it svn path=/nixpkgs/trunk/; revision=33813
16 lines
422 B
Nix
16 lines
422 B
Nix
{ cabal, stm, wxcore }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wx";
|
|
version = "0.90";
|
|
sha256 = "01rr8n99mas5x0vfxh8wf01vbh29vil860waxnsn6xdqc9fm5jj2";
|
|
buildDepends = [ stm wxcore ];
|
|
meta = {
|
|
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
|
description = "wxHaskell";
|
|
license = "unknown";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|