nixpkgs/pkgs/development/libraries/haskell/gtk2hs-buildtools/default.nix
Peter Simons dbce2ffd0f Generated neater meta.description strings.
svn path=/nixpkgs/trunk/; revision=28492
2011-08-11 13:03:51 +00:00

21 lines
592 B
Nix

{ 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
];
};
})