From 8bf3f76256f56e3aad91a690882e78e768aafb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andres=20L=C3=B6h?= Date: Mon, 26 Apr 2010 20:39:51 +0000 Subject: [PATCH] Let GHC wrapper inherit meta from the wrapped expression. svn path=/nixpkgs/trunk/; revision=21330 --- pkgs/development/compilers/ghc/wrapper.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/ghc/wrapper.nix b/pkgs/development/compilers/ghc/wrapper.nix index 50633123491..d14d26fc3fe 100644 --- a/pkgs/development/compilers/ghc/wrapper.nix +++ b/pkgs/development/compilers/ghc/wrapper.nix @@ -45,5 +45,6 @@ stdenv.mkDerivation { GHCGetPackages = ./ghc-get-packages.sh; inherit ghc; + inherit (ghc) meta; ghcVersion = ghc.version; }