e495d3345f
svn path=/nixpkgs/trunk/; revision=31517
19 lines
475 B
Nix
19 lines
475 B
Nix
{ cabal, stm, wxcore }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wx";
|
|
version = "0.13.2";
|
|
sha256 = "19k0sa16dr63bgl9j37zrxnknlnq3c2927xccwc2vq19vl7n52nd";
|
|
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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|