6c90771ac6
* Added Haskell Platform 2010.2.0.0. * Added cairo package in preparation for adding a new gtk2hs. svn path=/nixpkgs/trunk/; revision=22714
14 lines
393 B
Nix
14 lines
393 B
Nix
{cabal, alex, happy}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "gtk2hs-buildtools";
|
|
version = "0.9";
|
|
sha256 = "2586c419394601c1840d827d32cdb9d76bc94d71c03fdfa23c8d04cba99c6b20";
|
|
extraBuildInputs = [alex happy];
|
|
meta = {
|
|
description = "Tools to build the Gtk2Hs suite of User Interface libraries";
|
|
license = "GPL";
|
|
maintainers = [self.stdenv.lib.maintainers.andres];
|
|
};
|
|
})
|