nixpkgs/pkgs/development/libraries/haskell/vacuum/default.nix
Peter Simons c8ae7cc8bb Updated build expressions for the current version of cabal.nix.
svn path=/nixpkgs/trunk/; revision=28772
2011-08-23 10:35:49 +00:00

19 lines
511 B
Nix

{ cabal, ghcPaths }:
cabal.mkDerivation (self: {
pname = "vacuum";
version = "1.0.0";
sha256 = "2229948ce801052c5ffb70ffc07e301d87d60740b053df8a7b7851ad02c01d9f";
extraLibraries = [ ghcPaths ];
meta = {
homepage = "http://moonpatio.com/vacuum/";
description = "Extract graph representations of ghc heap values";
license = "LGPL";
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})