nixpkgs/pkgs/development/libraries/haskell/wxHaskell/wxdirect.nix
Peter Simons 3ec87421db wxHaskell-wxdirect.nix: updated to version 0.12.1.4
svn path=/nixpkgs/trunk/; revision=28361
2011-08-07 22:16:18 +00:00

16 lines
496 B
Nix

{cabal, parsec} :
cabal.mkDerivation (self : {
pname = "wxdirect";
version = "0.12.1.4";
sha256 = "0v1blh3l02h58cvsngfax5knmg51lil1kj6pr5iqrbcrivp2nh7f";
propagatedBuildInputs = [ parsec ];
meta = {
homepage = "http://haskell.org/haskellwiki/WxHaskell";
description = "helper tool for building wxHaskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})