mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
include-what-you-use: use unversioned llvm attribute
...in the expression itself, while hard-coding the officially supported version in all-packages.nix for sanity's sake (mine).
This commit is contained in:
parent
986f446674
commit
ca8903c3c2
@ -1,9 +1,8 @@
|
||||
{ stdenv, fetchurl, cmake, llvmPackages_37 }:
|
||||
{ stdenv, fetchurl, cmake, llvmPackages }:
|
||||
|
||||
let
|
||||
version = "0.5";
|
||||
llvmPackages = llvmPackages_37;
|
||||
in stdenv.mkDerivation rec {
|
||||
# Also bump llvmPackages in all-packages.nix to the supported version!
|
||||
let version = "0.5"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "include-what-you-use-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -5746,7 +5746,9 @@ let
|
||||
inherit (perlPackages) XMLSimple;
|
||||
};
|
||||
|
||||
include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use { };
|
||||
include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use {
|
||||
llvmPackages = llvmPackages_37;
|
||||
};
|
||||
|
||||
indent = callPackage ../development/tools/misc/indent { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user