nixpkgs/pkgs/development/tools/haskell/splot/default.nix

21 lines
625 B
Nix
Raw Normal View History

{ cabal, bytestringLexing, cairo, colour, HUnit, mtl, strptime
, time, vcsRevision
2012-09-18 13:58:05 +04:00
}:
cabal.mkDerivation (self: {
pname = "splot";
version = "0.3.11";
sha256 = "0mpyfmafjjcf85v740h69p5mggyqsq3li8m1fa5c0z4rdd0395an";
2012-09-18 13:58:05 +04:00
isLibrary = false;
isExecutable = true;
buildDepends = [
bytestringLexing cairo colour HUnit mtl strptime time vcsRevision
2012-09-18 13:58:05 +04:00
];
meta = {
homepage = "http://www.haskell.org/haskellwiki/Splot";
description = "A tool for visualizing the lifecycle of many concurrent multi-staged processes";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})