3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
426 B
Nix
16 lines
426 B
Nix
{ cabal, stm, wxcore }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wx";
|
|
version = "0.90.0.1";
|
|
sha256 = "116vlpssjcyzil99xmz3azc2vl97iban3gdpxd593q5gi24l838m";
|
|
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 ];
|
|
};
|
|
})
|