From d062ce9eef68d06c582b2a62717becf232a3a689 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 23 Apr 2013 11:35:24 +0200 Subject: [PATCH] haskell-ghc-heap-view: update to version 0.5 --- .../libraries/haskell/ghc-heap-view/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/ghc-heap-view/default.nix b/pkgs/development/libraries/haskell/ghc-heap-view/default.nix index 6213734881d..87339145d6d 100644 --- a/pkgs/development/libraries/haskell/ghc-heap-view/default.nix +++ b/pkgs/development/libraries/haskell/ghc-heap-view/default.nix @@ -1,10 +1,10 @@ -{ cabal, transformers }: +{ cabal, binary, transformers }: cabal.mkDerivation (self: { pname = "ghc-heap-view"; - version = "0.4.2.0"; - sha256 = "0c9yz47j0ddy0l04dabglc99hl7n9wwnz4xj9r8ljafag6l221gp"; - buildDepends = [ transformers ]; + version = "0.5"; + sha256 = "00sibiqq95xnjpf9gy0dajvpmmz3rxvi3lhm56vfds7ddnyxpv0c"; + buildDepends = [ binary transformers ]; meta = { description = "Extract the heap representation of Haskell values and thunks"; license = self.stdenv.lib.licenses.bsd3;