mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
213e8e9224
* boost: 1.70 -> 1.77 * Unpin stdenv
18 lines
344 B
Nix
18 lines
344 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "8.0.29-22";
|
|
sha256 = "sha256-dGpfU+IesAyr2s1AEjfYggOEkMGQ9JdEesu5PtJHNXA=";
|
|
|
|
# includes https://github.com/Percona-Lab/libkmip.git
|
|
fetchSubmodules = true;
|
|
|
|
extraPatches = [
|
|
./abi-check.patch
|
|
];
|
|
|
|
extraPostInstall = ''
|
|
rm -r "$out"/docs
|
|
'';
|
|
})
|