ghc-paths: added version 0.1.0.8

Also renamed the default version to 0.1.0.6.nix for consistency.

svn path=/nixpkgs/trunk/; revision=28240
This commit is contained in:
Peter Simons 2011-08-07 18:22:58 +00:00
parent 937fa0ed87
commit 18daa8fc26
3 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,13 @@
{cabal} :
cabal.mkDerivation (self : {
pname = "ghc-paths";
version = "0.1.0.8";
sha256 = "0mhc5zhbybp1vmkjsqbca51993vkpx5g8hql160m8m95apkc2wl6";
meta = {
description = "Knowledge of GHC's installation directories";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})

View file

@ -537,9 +537,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
ghcMtl = callPackage ../development/libraries/haskell/ghc-mtl {};
ghcPaths_0_1_0_5 = callPackage ../development/libraries/haskell/ghc-paths/0.1.0.5.nix {};
ghcPaths_0_1_0_6 = callPackage ../development/libraries/haskell/ghc-paths/0.1.0.6.nix {};
ghcPaths = callPackage ../development/libraries/haskell/ghc-paths {};
ghcPaths_0_1_0_8 = callPackage ../development/libraries/haskell/ghc-paths/0.1.0.8.nix {};
ghcPaths = self.ghcPaths_0_1_0_6; # version 0.1.0.5 doesn't build with an up-to-date GHC
ghcSyb = callPackage ../development/libraries/haskell/ghc-syb {};