b0b297ecb7
svn path=/nixpkgs/trunk/; revision=28550
19 lines
474 B
Nix
19 lines
474 B
Nix
{ cabal, stm, wxcore }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wx";
|
|
version = "0.12.1.6";
|
|
sha256 = "1p0gn46gk1abin095va22n9bycxhm2cq1vyvwiypcdq7jq541lhk";
|
|
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
|
|
];
|
|
};
|
|
})
|