1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 18:12:20 -04:00
nixpkgs/pkgs/development/tools/haskell/threadscope/default.nix
2014-05-03 20:03:32 +02:00

23 lines
715 B
Nix

{ cabal, binary, cairo, deepseq, filepath, ghcEvents, glib, gtk
, mtl, pango, time
}:
cabal.mkDerivation (self: {
pname = "threadscope";
version = "0.2.3";
sha256 = "07kbkcckxfsb50zks8jgw2g0ary63hymicq5lqrm5jjaarjb80gr";
isLibrary = false;
isExecutable = true;
buildDepends = [
binary cairo deepseq filepath ghcEvents glib gtk mtl pango time
];
configureFlags = "--ghc-options=-rtsopts";
meta = {
homepage = "http://www.haskell.org/haskellwiki/ThreadScope";
description = "A graphical tool for profiling parallel Haskell programs";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})