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
22 lines
609 B
Nix
22 lines
609 B
Nix
{ cabal, libX11, mesa, wxdirect, wxGTK }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wxc";
|
|
version = "0.90.0.2";
|
|
sha256 = "1vqs9517qacm04d2bxpbpcdgfmlhpblm6af45nmcdikvlfa1v0jp";
|
|
buildDepends = [ wxdirect ];
|
|
extraLibraries = [ libX11 mesa wxGTK ];
|
|
noHaddock = true;
|
|
postInstall = ''
|
|
cp -v dist/build/libwxc.so.${self.version} $out/lib/libwxc.so
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
|
description = "wxHaskell C++ wrapper";
|
|
license = "unknown";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|