2011-08-12 13:02:44 +02:00
|
|
|
{ cabal, binary, binaryShared, deepseq, glib, gtk, gtksourceview2
|
|
|
|
, hslogger, leksahServer, ltk, mtl, network, parsec, processLeksah
|
|
|
|
, regexBase, regexTdfa, strict, time, utf8String
|
|
|
|
}:
|
2009-04-19 21:06:34 +02:00
|
|
|
|
2011-08-12 13:02:44 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-19 21:06:34 +02:00
|
|
|
pname = "leksah";
|
2011-08-08 09:41:45 +02:00
|
|
|
version = "0.10.0.4";
|
|
|
|
sha256 = "1g12w1kl63fxzz1c2x237yrqkaja9awiqyyipkdms5iql0ini7bw";
|
2011-08-12 13:02:44 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-08 09:41:45 +02:00
|
|
|
binary binaryShared deepseq glib gtk gtksourceview2 hslogger
|
|
|
|
leksahServer ltk mtl network parsec processLeksah regexBase
|
2011-08-12 13:02:44 +02:00
|
|
|
regexTdfa strict time utf8String
|
2011-08-08 09:41:45 +02:00
|
|
|
];
|
|
|
|
noHaddock = true;
|
2009-04-19 21:06:34 +02:00
|
|
|
meta = {
|
2011-08-08 09:41:45 +02:00
|
|
|
homepage = "http://www.leksah.org";
|
|
|
|
description = "Haskell IDE written in Haskell";
|
2010-11-17 15:48:12 +01:00
|
|
|
license = "GPL";
|
2011-08-09 09:49:41 +02:00
|
|
|
platforms = self.stdenv.lib.platforms.linux;
|
2011-08-12 13:02:44 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-19 21:06:34 +02:00
|
|
|
};
|
2011-08-08 09:41:45 +02:00
|
|
|
})
|