Merge pull request #39877 from dtzWill/fix/ltrace-debian-patches

ltrace: fix warnings and bugs using patches from debian
This commit is contained in:
Will Dietz 2018-05-02 14:04:02 -05:00 committed by GitHub
commit 519d19bf72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,10 +10,14 @@ stdenv.mkDerivation rec {
buildInputs = [ elfutils libunwind ];
preConfigure =
''
configureFlags="--disable-werror"
makeFlagsArray=(INSTALL="install -c")
prePatch = let
debian = fetchurl {
url = mirror://debian/pool/main/l/ltrace/ltrace_0.7.3-6.debian.tar.xz;
sha256 = "0xc4pfd8qw53crvdxr29iwl8na53zmknca082kziwpvlzsick4kp";
};
in ''
tar xf '${debian}'
patches="$patches $(cat debian/patches/series | sed 's|^|debian/patches/|')"
'';
meta = with stdenv.lib; {