Merge pull request #303782 from r-ryantm/auto-update/cpm-cmake

cpm-cmake: 0.38.8 -> 0.39.0
This commit is contained in:
Weijia Wang 2024-04-27 02:52:23 +02:00 committed by GitHub
commit f824aaa875
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 6 deletions

View File

@ -5,13 +5,13 @@
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "cpm-cmake";
version = "0.38.8";
version = "0.39.0";
src = fetchFromGitHub {
owner = "cpm-cmake";
repo = "cpm.cmake";
rev = "v${finalAttrs.version}";
hash = "sha256-S1I7XKvpniocI2UAzO8yslju3fYy06MPC2Kl7N7bh8I=";
hash = "sha256-cDFt+fDpb/gDlFx+3C5Hw/ybf4hdjZOrpeNR8yBwd1M=";
};
dontConfigure = true;

View File

@ -95,9 +95,7 @@ stdenv.mkDerivation rec {
license = licenses.asl20;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
# https://github.com/NixOS/nixpkgs/pull/189712#issuecomment-1237791234
broken = (stdenv.isLinux && stdenv.isAarch64)
# error: excess elements in scalar initializer on std::aligned_alloc
|| (stdenv.isDarwin && stdenv.isx86_64);
# error: call to 'format' is ambiguous
broken = true; # last successful build 2023-12-31
};
}