From b0ea18700150d2a04017e723e91e3435c85cb5b3 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 22 Oct 2014 10:24:34 +0200 Subject: [PATCH] ihaskell-wrapper: inherit the meta section from ihaskell --- pkgs/development/tools/haskell/ihaskell/wrapper.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/haskell/ihaskell/wrapper.nix b/pkgs/development/tools/haskell/ihaskell/wrapper.nix index 7f3583409af1..7a5b24ce0393 100644 --- a/pkgs/development/tools/haskell/ihaskell/wrapper.nix +++ b/pkgs/development/tools/haskell/ihaskell/wrapper.nix @@ -20,8 +20,5 @@ stdenv.mkDerivation rec { --set GHC_PACKAGE_PATH "\$GHC_PACKAGE_PATH:" # always end with : to include base packages ''; - meta = { - description = ihaskell.meta.description; - broken = true; - }; -} \ No newline at end of file + inherit (ihaskell) meta; +}