nixpkgs/pkgs/development/libraries/haskell/ltk/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
497 B
Nix

{ cabal, Cabal, filepath, glib, gtk, mtl, parsec, transformers }:
cabal.mkDerivation (self: {
pname = "ltk";
version = "0.12.1.0";
sha256 = "12x6nba5bll8fgzpxii1cf87j27jk4mn5gf1bx4ahd9v30h1a0h6";
buildDepends = [ Cabal filepath glib gtk mtl parsec transformers ];
meta = {
homepage = "http://www.leksah.org";
description = "Leksah tool kit";
license = "GPL";
platforms = self.stdenv.lib.platforms.linux;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})