summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/gtk2hs-buildtools/default.nix
blob: 9b0fe07653c43d91dfc0f7ebe9c2c22763c18c90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ cabal, alex, happy }:

cabal.mkDerivation (self: {
  pname = "gtk2hs-buildtools";
  version = "0.12.0";
  sha256 = "1czlmyr9zhzc0h1j0z3chv06ma77cibq2yc6h1slfphb1lkv66a8";
  isLibrary = false;
  isExecutable = true;
  buildTools = [ alex happy ];
  meta = {
    homepage = "http://www.haskell.org/gtk2hs/";
    description = "Tools to build the Gtk2Hs suite of User Interface libraries";
    license = self.stdenv.lib.licenses.gpl2;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})