about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-03-13 09:46:12 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-03-13 09:46:12 +0000
commit68e08a006a85880356697959d2f5141d55359d13 (patch)
tree2204321c900b2f4fd8792d1806b0e681f9cae4f8 /pkgs/development/compilers/ghc
parent9d5e5ddc9e0acf2f21445441ebd401f2e279fe64 (diff)
downloadnixlib-68e08a006a85880356697959d2f5141d55359d13.tar
nixlib-68e08a006a85880356697959d2f5141d55359d13.tar.gz
nixlib-68e08a006a85880356697959d2f5141d55359d13.tar.bz2
nixlib-68e08a006a85880356697959d2f5141d55359d13.tar.lz
nixlib-68e08a006a85880356697959d2f5141d55359d13.tar.xz
nixlib-68e08a006a85880356697959d2f5141d55359d13.tar.zst
nixlib-68e08a006a85880356697959d2f5141d55359d13.zip
updated ghc pakcages (now contains gtk2hs and hdbc-postgresql)
introduced .meta.sourceWithTags (insteod of .passthru.sourceWithTags)
hack to get back all tags :-)

svn path=/nixpkgs/trunk/; revision=11092
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/ghc-wrapper/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ghc/ghc-wrapper/default.nix b/pkgs/development/compilers/ghc/ghc-wrapper/default.nix
index 4f4e4b82b1b9..5fdc6b3461b8 100644
--- a/pkgs/development/compilers/ghc/ghc-wrapper/default.nix
+++ b/pkgs/development/compilers/ghc/ghc-wrapper/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation {
   inherit suffix name ghc readline ncurses;
 
   buildInputs = (libraries ++ [ghcPkgUtil]);
-  tags = map (x :  sourceWithTagsDerivation (x.passthru.sourceWithTags)) 
+  tags = map (x :  sourceWithTagsDerivation (sourceWithTagsFromDerivation x)) 
           (uniqList { inputList= filter annotatedWithSourceAndTagInfo libraries; } );
 
   phases="installPhase";