Merge pull request #43095 from dtzWill/fix/libndctl-musl

libndctl: fix build w/musl using patch from upstream
This commit is contained in:
Will Dietz 2018-07-05 22:49:27 -05:00 committed by GitHub
commit 379d4b4fa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoreconfHook, autoconf, automake, asciidoc, docbook_xsl, docbook_xml_dtd_45, libxslt, xmlto, pkgconfig, json_c, kmod, which, systemd, utillinux
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, autoconf, automake, asciidoc, docbook_xsl, docbook_xml_dtd_45, libxslt, xmlto, pkgconfig, json_c, kmod, which, systemd, utillinux
}:
let
@ -23,6 +23,14 @@ in stdenv.mkDerivation rec {
json_c kmod systemd utillinux
];
patches = [
(fetchpatch {
name = "add-missing-include-for-ssize_t.patch";
url = "https://github.com/pmem/ndctl/commit/8f1798d14dda367c659b87362edb312739830ddf.patch";
sha256 = "1jr5kh087938msl22hgjngbf025n9iplz0czmybfp7lavl73m0pm";
})
];
preAutoreconf = ''
substituteInPlace configure.ac --replace "which" "${which}/bin/which"
substituteInPlace git-version --replace /bin/bash ${stdenv.shell}