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";
};
})

View file

@ -183,6 +183,10 @@ rec {
inherit cabal;
};
strictConcurrency = import ../development/libraries/haskell/strictConcurrency {
inherit cabal parallel;
};
time = import ../development/libraries/haskell/time {
inherit cabal;
};
@ -195,15 +199,23 @@ rec {
inherit cabal;
};
wxHaskell = import ../development/libraries/haskell/wxHaskell {
inherit ghc;
inherit (pkgs) stdenv fetchurl unzip wxGTK;
vacuum = import ../development/libraries/haskell/vacuum {
inherit cabal ghcPaths haskellSrcMeta;
};
vacuumCairo = import ../development/libraries/haskell/vacuumCairo {
inherit cabal vacuum gtk2hs parallel strictConcurrency;
};
vty = import ../development/libraries/haskell/vty {
inherit cabal;
};
wxHaskell = import ../development/libraries/haskell/wxHaskell {
inherit ghc;
inherit (pkgs) stdenv fetchurl unzip wxGTK;
};
X11 = import ../development/libraries/haskell/X11 {
inherit cabal;
inherit (pkgs.xlibs) libX11 libXinerama libXext;
@ -282,10 +294,6 @@ rec {
inherit cabal uulib;
};
vacuum = import ../development/libraries/haskell/vacuum {
inherit cabal ghcPaths haskellSrcMeta;
};
# Applications.
darcs = import ../applications/version-management/darcs/darcs-2.nix {