mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 08:34:04 +00:00
![Sergei Trofimovich](/assets/img/avatar_default.png)
Without the change build fails on `master` on `gcc-13` as https://hydra.nixos.org/build/249086583: In file included from /build/source/components/keyrings/common/data/data.cc:25: /build/source/components/keyrings/common/data/data.h: In member function 'pfs_string keyring_common::data::Sensitive_data::decode() const': /build/source/components/keyrings/common/data/data.h:69:24: error: 'uintptr_t' is not a member of 'std' 69 | std::hash<std::uintptr_t>{}(reinterpret_cast<std::uintptr_t>(this)); | ^~~~~~~~~
18 lines
342 B
Nix
18 lines
342 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "8.0.35-30";
|
|
hash = "sha256-yagqBKU057Gk5pEyT2R3c5DtxNG/+TSPenFgbxUiHPo=";
|
|
|
|
# includes https://github.com/Percona-Lab/libkmip.git
|
|
fetchSubmodules = true;
|
|
|
|
extraPatches = [
|
|
./abi-check.patch
|
|
];
|
|
|
|
extraPostInstall = ''
|
|
rm -r "$out"/docs
|
|
'';
|
|
})
|