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

cabal.mkDerivation (self : {
  pname = "gtk2hs-buildtools";
  version = "0.11.2";
  sha256 = "330c52830358966bcff308f58a570e84bb0b4d6004b6f01107d55dd88faa54ad";
  extraBuildInputs = [alex happy];
  meta = {
    description = "Tools to build the Gtk2Hs suite of User Interface libraries";
    license = "GPL";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})