From 8f4fb17dc7a9d43303a0a88ffe186643645ff6da Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 7 Feb 2018 09:54:32 -0600 Subject: [PATCH] llvm-{4,5}: don't disable manpages on musl --- pkgs/development/compilers/llvm/4/default.nix | 2 +- pkgs/development/compilers/llvm/5/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/llvm/4/default.nix b/pkgs/development/compilers/llvm/4/default.nix index 31018237d5c0c..ef2aab490926a 100644 --- a/pkgs/development/compilers/llvm/4/default.nix +++ b/pkgs/development/compilers/llvm/4/default.nix @@ -21,7 +21,7 @@ let clang-tools-extra_src = fetch "clang-tools-extra" "1dhmp7ccfpr42bmvk3kp37ngjpf3a9m5d4kkpsn7d00hzi7fdl9m"; # Add man output without introducing extra dependencies. - buildManPages = stdenv.buildPlatform == stdenv.hostPlatform && !stdenv.hostPlatform.isMusl; + buildManPages = stdenv.buildPlatform == stdenv.hostPlatform; overrideManOutput = drv: if (!buildManPages) then drv else let drv-manpages = drv.override { enableManpages = true; }; in diff --git a/pkgs/development/compilers/llvm/5/default.nix b/pkgs/development/compilers/llvm/5/default.nix index 978fe1279c30d..8ccb6377791c0 100644 --- a/pkgs/development/compilers/llvm/5/default.nix +++ b/pkgs/development/compilers/llvm/5/default.nix @@ -21,7 +21,7 @@ let clang-tools-extra_src = fetch "clang-tools-extra" "09fjii7w43kvxvsxxs6gig9vz95vnvx1779rqd36h8kksvws3bcs"; # Add man output without introducing extra dependencies. - buildManPages = stdenv.buildPlatform == stdenv.hostPlatform && !stdenv.hostPlatform.isMusl; + buildManPages = stdenv.buildPlatform == stdenv.hostPlatform; overrideManOutput = drv: if (!buildManPages) then drv else let drv-manpages = drv.override { enableManpages = true; }; in