hackage-packages.nix: add compiler-specific LLVM support

This change will resolve 'llvm' and related symbols from the compiler-specific
'llvmPackages' set rather than the global 'pkgs'. This allows us to use
different versions of llvm depending on the copmiler we're building with.
This commit is contained in:
Peter Simons 2015-03-25 19:55:56 +01:00
parent 2e811ff754
commit 753284c2d0
1 changed files with 5 additions and 5 deletions

View File

@ -5272,7 +5272,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Glome";
description = "Simple 3D vector library";
license = "GPL";
}) { inherit (pkgs) llvm;};
}) { inherit (self.llvmPackages) llvm;};
"GlomeView" = callPackage
({ mkDerivation, base, deepseq, GlomeTrace, GlomeVec, monad-par
@ -51184,7 +51184,7 @@ self: {
homepage = "http://gloss.ouroborus.net";
description = "Parallel rendering of raster images";
license = stdenv.lib.licenses.mit;
}) { inherit (pkgs) llvm;};
}) { inherit (self.llvmPackages) llvm;};
"gloss-raster-accelerate" = callPackage
({ mkDerivation, accelerate, accelerate-cuda, base, gloss
@ -78467,7 +78467,7 @@ self: {
description = "FFI bindings to the LLVM compiler toolkit";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) llvm;};
}) { inherit (self.llvmPackages) llvm;};
"llvm-base-types" = callPackage
({ mkDerivation, base, c2hs, containers, deepseq, dwarf, failure
@ -99649,7 +99649,7 @@ self: {
homepage = "http://repa.ouroborus.net";
description = "Algorithms using the Repa array library";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) llvm;};
}) { inherit (self.llvmPackages) llvm;};
"repa-array" = callPackage
({ mkDerivation, base, bytestring, double-conversion, mtl
@ -99727,7 +99727,7 @@ self: {
homepage = "http://repa.ouroborus.net";
description = "Examples using the Repa array library";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) llvm;};
}) { inherit (self.llvmPackages) llvm;};
"repa-fftw" = callPackage
({ mkDerivation, base, carray, fft, repa, storable-complex, tasty