nixpkgs/pkgs/development/libraries/haskell/wxHaskell/wxcore.nix
Andres Löh 9a216af770 Updating wxHaskell (in progress).
svn path=/nixpkgs/trunk/; revision=15442
2009-05-04 13:32:59 +00:00

18 lines
523 B
Nix

{cabal, time, parsec, stm, libX11, mesa, wxGTK}:
cabal.mkDerivation (self : {
pname = "wxcore";
version = "0.11.1.2";
sha256 = "b91b17243d8a08d96f572224c434c36d14feb1b0bb64a0e63900f0103a7c4752";
propagatedBuildInputs = [time parsec stm libX11 wxGTK mesa];
/* configureFlags = [ "--with-opengl" ]; */
preConfigure = ''
sed -i 's/ghc-pkg latest/ghc-pkg --global latest/g' configure
sed -i 's/pkg describe/pkg --global describe/g' configure
'';
meta = {
description = "wxHaskell core";
};
})