summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wxHaskell/wxdirect.nix
blob: 08512c206255109cc2ad4eb29585d814b604c28a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ cabal, parsec, strict, time }:

cabal.mkDerivation (self: {
  pname = "wxdirect";
  version = "0.90.0.1";
  sha256 = "04jslgxw601g6wh8f2wrdnipzh6x0487kfxb89fkgfgjhxrkfyr3";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ parsec strict time ];
  patchPhase = ''
    sed -i -e 's|containers >=.*|containers|' wxdirect.cabal
  '';
  meta = {
    homepage = "http://haskell.org/haskellwiki/WxHaskell";
    description = "helper tool for building wxHaskell";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})