mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
22 lines
641 B
Nix
22 lines
641 B
Nix
{ cabal, bytestringLexing, cairo, Chart, colour, HUnit, mtl
|
|
, strptime, time, vcsRevision
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "splot";
|
|
version = "0.3.5";
|
|
sha256 = "1bayh9s0jj8874w7lv9m11h2f609h30ywgrp438h57jq1prs2wlk";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
bytestringLexing cairo Chart colour HUnit mtl strptime time
|
|
vcsRevision
|
|
];
|
|
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;
|
|
};
|
|
})
|