From b5b3671318e25466e9f71ec91330a70751b44767 Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Sat, 8 Dec 2007 15:21:56 +0000 Subject: [PATCH] removed unused file svn path=/nixpkgs/branches/stdenv-updates/; revision=9896 --- pkgs/development/compilers/ghc-6.8/d.nix | 37 ------------------------ 1 file changed, 37 deletions(-) delete mode 100644 pkgs/development/compilers/ghc-6.8/d.nix diff --git a/pkgs/development/compilers/ghc-6.8/d.nix b/pkgs/development/compilers/ghc-6.8/d.nix deleted file mode 100644 index a011405f541..00000000000 --- a/pkgs/development/compilers/ghc-6.8/d.nix +++ /dev/null @@ -1,37 +0,0 @@ - -stdenv.mkDerivation (rec { - homepage = "http://www.haskell.org/ghc"; - - src = map fetchurl [ - { url = "${homepage}/dist/stable/dist/${name}-src.tar.bz2"; - } - { url = "${homepage}/dist/stable/dist/${name}-src-extralibs.tar.bz2"; - } - ]; - - - setupHook = ./setup-hook.sh; - - meta = { - }; - - postInstall = " - ensureDir \"$out/nix-support\" - echo \"# Path to the GHC compiler directory in the store\" > $out/nix-support/setup-hook - echo \"ghc=$out\" >> $out/nix-support/setup-hook - echo \"\" >> $out/nix-support/setup-hook - cat $setupHook >> $out/nix-support/setup-hook - "; - - patch64 = ./x86_64-linux_patch; - - # Thanks to Ian Lynagh ghc now works on x86_64-linux as well - patchPhase = if (stdenv.system == "x86_64-linx") then "patch -p2 < $patch64" else ""; - - - # the presence of this file makes Cabal cry for happy while generating makefiles ... - preConfigure = " - echo 'GhcThreaded=NO' > mk/build.mk - rm libraries/haskell-src/Language/Haskell/Parser.ly - "; -})