2011-09-05 11:52:34 +02:00
|
|
|
{ cabal, binary, cairo, ghcEvents, glib, gtk, mtl, pango }:
|
2010-10-05 19:30:17 +02:00
|
|
|
|
2011-08-14 01:38:40 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-10-05 19:30:17 +02:00
|
|
|
pname = "threadscope";
|
2011-09-05 11:52:34 +02:00
|
|
|
version = "0.2.0";
|
|
|
|
sha256 = "0b8lc8han4d90wgzliy80l1gbkm09gg6qxsn37blj41wzl6yzr9k";
|
2011-08-14 01:38:40 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2011-09-05 11:52:34 +02:00
|
|
|
buildDepends = [ binary cairo ghcEvents glib gtk mtl pango ];
|
2011-03-12 18:28:15 +01:00
|
|
|
configureFlags = "--ghc-options=-rtsopts";
|
2010-10-05 19:30:17 +02:00
|
|
|
meta = {
|
2011-09-05 11:52:34 +02:00
|
|
|
description = "A graphical tool for profiling parallel Haskell programs";
|
2011-08-14 01:38:40 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-10-05 19:30:17 +02:00
|
|
|
};
|
2011-08-14 01:38:40 +02:00
|
|
|
})
|