mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
ghc_filesystem: pin apple-sdk to v11
Fixes a build failure on x86_64-darwin that appeared in https://hydra.nixos.org/build/275198284
This commit is contained in:
parent
2867f69e5c
commit
0e4fabb152
@ -1,4 +1,4 @@
|
||||
{ stdenv, lib, cmake, fetchFromGitHub }:
|
||||
{ stdenv, lib, apple-sdk_11, cmake, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "filesystem";
|
||||
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11;
|
||||
|
||||
meta = with lib; {
|
||||
description = "header-only single-file C++ std::filesystem compatible helper library";
|
||||
homepage = "https://github.com/gulrak/filesystem";
|
||||
|
Loading…
Reference in New Issue
Block a user