2011-08-14 01:38:40 +02:00
|
|
|
{ cabal, binary, cairo, ghcEvents, glade, gtk, mtl }:
|
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-08-14 01:38:40 +02:00
|
|
|
version = "0.1.3";
|
|
|
|
sha256 = "1vak3624vrnkfvwxzfw5hkc0552v213jb874f6q536g5vhjjxpih";
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ binary cairo ghcEvents glade gtk mtl ];
|
2011-03-12 18:28:15 +01:00
|
|
|
configureFlags = "--ghc-options=-rtsopts";
|
2010-10-05 19:30:17 +02:00
|
|
|
meta = {
|
|
|
|
description = "A graphical thread profiler";
|
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
|
|
|
})
|