Added vacuum and vacuum-cairo packages.

svn path=/nixpkgs/trunk/; revision=15179
This commit is contained in:
Andres Löh
2009-04-20 13:01:31 +00:00
parent cf54a62384
commit f4cdb54fd3
4 changed files with 40 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
{cabal, parallel}:
cabal.mkDerivation (self : {
pname = "strict-concurrency";
version = "0.2.1";
sha256 = "8838600033bde2ce7ca6bd95a3815412da67244b57dfc0e2246a8f2469f5fd9c";
propagatedBuildInputs = [parallel];
meta = {
description = "Strict concurrency abstractions";
};
})

View File

@@ -6,7 +6,7 @@ cabal.mkDerivation (self : {
sha256 = "9240ec35b39d60928a73469893adf1d2aa742b9a781dbc6dcdaa54e96d9bf1af";
propagatedBuildInputs = [ghcPaths haskellSrcMeta];
meta = {
description = "Generic programming with systems of recursive datatypes";
description = "Extract graph representations of ghc heap values";
};
})

View File

@@ -0,0 +1,12 @@
{cabal, vacuum, gtk2hs, parallel, strictConcurrency}:
cabal.mkDerivation (self : {
pname = "vacuum-cairo";
version = "0.4.1";
sha256 = "4d506fec246d40e5c983eea1dbd72735e276f882539aa3682cda9d9a33f8ddb2";
propagatedBuildInputs = [vacuum gtk2hs parallel strictConcurrency];
meta = {
description = "Visualize live Haskell data structures using vacuum, graphviz and cairo";
};
})