nixpkgs/pkgs/development/libraries/haskell/hp2any-core/default.nix
Andres Löh eabbecd10f Added hp2any.
svn path=/nixpkgs/trunk/; revision=27701
2011-07-11 07:17:53 +00:00

15 lines
379 B
Nix

{cabal, bytestringTrie, network}:
cabal.mkDerivation (self : {
pname = "hp2any-core";
version = "0.10.1";
sha256 = "1qblsvlj4x22ml3k5mlr28r5xk9rmi7lpipd369dbvdzm0rflf03";
propagatedBuildInputs = [bytestringTrie network];
meta = {
description = "Heap profiling helper library";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})