summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hp2any-core/default.nix
blob: 045c8678f65472153ecde26dbd476ddb7aa432ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, attoparsec, Cabal, filepath, network, time }:

cabal.mkDerivation (self: {
  pname = "hp2any-core";
  version = "0.11.1";
  sha256 = "146bigmch7dawyyakj0w55p0jdpnxkj8q5izjsswqqk0pdxia546";
  buildDepends = [ attoparsec Cabal filepath network time ];
  meta = {
    homepage = "http://www.haskell.org/haskellwiki/Hp2any";
    description = "Heap profiling helper library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})