mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python2Packages.nixpart0/lvm2: patch for glibc >= 2.28
This commit is contained in:
parent
c494fc51dc
commit
0776d9043c
2 changed files with 14 additions and 2 deletions
|
@ -27,7 +27,7 @@ let
|
||||||
|
|
||||||
lvm2 = import ./lvm2.nix {
|
lvm2 = import ./lvm2.nix {
|
||||||
inherit stdenv fetchurl;
|
inherit stdenv fetchurl;
|
||||||
inherit (pkgs) pkgconfig utillinux systemd coreutils;
|
inherit (pkgs) fetchpatch pkgconfig utillinux systemd coreutils;
|
||||||
};
|
};
|
||||||
|
|
||||||
multipath_tools = import ./multipath-tools.nix {
|
multipath_tools = import ./multipath-tools.nix {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, systemd, utillinux, coreutils }:
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, systemd, utillinux, coreutils }:
|
||||||
|
|
||||||
let
|
let
|
||||||
v = "2.02.106";
|
v = "2.02.106";
|
||||||
|
@ -12,6 +12,18 @@ stdenv.mkDerivation {
|
||||||
sha256 = "0nr833bl0q4zq52drjxmmpf7bs6kqxwa5kahwwxm9411khkxz0vc";
|
sha256 = "0nr833bl0q4zq52drjxmmpf7bs6kqxwa5kahwwxm9411khkxz0vc";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix build with glibc >= 2.28
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/86403
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/lvmteam/lvm2/commit/92d5a8441007f578e000b492cecf67d6b8a87405.patch";
|
||||||
|
sha256 = "1yqd6jng0b370k53vks1shg57yhfyribhpmv19km5zsjqf0qqx2d";
|
||||||
|
excludes = [
|
||||||
|
"libdm/libdm-stats.c"
|
||||||
|
];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--disable-readline"
|
"--disable-readline"
|
||||||
"--enable-udev_rules"
|
"--enable-udev_rules"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue